{"id":15286889,"url":"https://github.com/guidosette/gfloadinganimationview","last_synced_at":"2026-01-05T21:05:21.635Z","repository":{"id":56911996,"uuid":"210155823","full_name":"guidosette/GFLoadingAnimationView","owner":"guidosette","description":"Simple loading animation view to block UI.","archived":false,"fork":false,"pushed_at":"2019-10-16T20:24:07.000Z","size":2767,"stargazers_count":1,"open_issues_count":0,"forks_count":2,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-03-05T17:18:39.573Z","etag":null,"topics":["cocoapods","ios","loader","loading","loading-animations","loading-indicator","loading-spinner","objective-c","progress-circle"],"latest_commit_sha":null,"homepage":"","language":"Objective-C","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/guidosette.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2019-09-22T13:55:05.000Z","updated_at":"2019-10-16T20:24:09.000Z","dependencies_parsed_at":"2022-08-21T03:20:23.188Z","dependency_job_id":null,"html_url":"https://github.com/guidosette/GFLoadingAnimationView","commit_stats":null,"previous_names":[],"tags_count":6,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/guidosette%2FGFLoadingAnimationView","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/guidosette%2FGFLoadingAnimationView/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/guidosette%2FGFLoadingAnimationView/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/guidosette%2FGFLoadingAnimationView/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/guidosette","download_url":"https://codeload.github.com/guidosette/GFLoadingAnimationView/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":245175352,"owners_count":20572781,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["cocoapods","ios","loader","loading","loading-animations","loading-indicator","loading-spinner","objective-c","progress-circle"],"created_at":"2024-09-30T15:18:52.130Z","updated_at":"2026-01-05T21:05:21.536Z","avatar_url":"https://github.com/guidosette.png","language":"Objective-C","funding_links":[],"categories":[],"sub_categories":[],"readme":"# GFLoadingAnimationView\n\n[![CI Status](https://img.shields.io/travis/guidosette/GFLoadingAnimationView.svg?style=flat)](https://travis-ci.org/guidosette/GFLoadingAnimationView)\n[![Version](https://img.shields.io/cocoapods/v/GFLoadingAnimationView.svg?style=flat)](https://cocoapods.org/pods/GFLoadingAnimationView)\n[![License](https://img.shields.io/cocoapods/l/GFLoadingAnimationView.svg?style=flat)](https://cocoapods.org/pods/GFLoadingAnimationView)\n[![Platform](https://img.shields.io/cocoapods/p/GFLoadingAnimationView.svg?style=flat)](https://cocoapods.org/pods/GFLoadingAnimationView)\n\n## Example\n\n![Alt Text](https://github.com/guidosette/GFLoadingAnimationView/blob/master/photo.gif)\n\n![Alt Text](https://github.com/guidosette/GFLoadingAnimationView/blob/master/photo2.gif)\n\nSimple loading animation view to block UI. Easy to use and configurable.\nYou can also use GFLoadingPercentualView to show a loading with percentual status.\n\nTo run the example project, clone the repo, and run `pod install` from the Example directory first.\n\n\n## Installation\n\nGFLoadingAnimationView is available through [CocoaPods](https://cocoapods.org). To install\nit, simply add the following line to your Podfile:\n\n```ruby\npod 'GFLoadingAnimationView'\n```\n\n## How to use\nGFLoadingAnimationView\n\n    #import \"GFLoadingAnimationView.h\"\n\n    // show\n\t[GFLoadingAnimationView showLoadingView];\n\n    // hide\n    [GFLoadingAnimationView hideLoadingView];\n    \nGFLoadingPercentualView\n\n    #import \"GFLoadingPercentualView.h\"\n\n    // show\n\t[GFLoadingPercentualView showLoadingView];\n\n    // hide\n    [GFLoadingPercentualView hideLoadingView];\n\n## Settings\nGFLoadingAnimationView\n\n    //\tbackground\n\t[GFLoadingAnimationView setCircleSize:100];\n\t[GFLoadingAnimationView setCircleBackgroundColor:[UIColor groupTableViewBackgroundColor]];\n    //\tspinner\n\t[GFLoadingAnimationView setSpinnerStrokeColor:[UIColor grayColor]];\n\t[GFLoadingAnimationView setSpinnerStrokeWidth:3];\n    //\timage\n\t[GFLoadingAnimationView setImageSizePerc:0.4];\n\t[GFLoadingAnimationView setImage:[UIImage imageNamed:@\"test\"]];\n\nGFLoadingPercentualView\n\n    //\tbackground\n\t[GFLoadingAnimationView setCircleSize:100];\n\t[GFLoadingAnimationView setCircleBackgroundColor:[UIColor groupTableViewBackgroundColor]];\n    //\tspinner\n\t[GFLoadingAnimationView setSpinnerStrokeColor:[UIColor grayColor]];\n\t[GFLoadingAnimationView setSpinnerStrokeWidth:3];\n    //\timage\n\t[GFLoadingAnimationView setImageSizePerc:0.4];\n\t[GFLoadingAnimationView setImage:[UIImage imageNamed:@\"test\"]];\n    //\tlabel\n\t[GFLoadingPercentualView setLabelFontSize:20];\n\t[GFLoadingPercentualView showLabel:false];\n\n## Author\n\nGuido Fanfani, guido.fanfani7@gmail.com\n\n## License\n\nGFLoadingAnimationView is available under the MIT license. See the LICENSE file for more info.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fguidosette%2Fgfloadinganimationview","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fguidosette%2Fgfloadinganimationview","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fguidosette%2Fgfloadinganimationview/lists"}