{"id":20006799,"url":"https://github.com/raymondjavaxx/spinkit-objc","last_synced_at":"2025-04-12T22:27:42.948Z","repository":{"id":12900155,"uuid":"15577218","full_name":"raymondjavaxx/SpinKit-ObjC","owner":"raymondjavaxx","description":"UIKit port of SpinKit","archived":false,"fork":false,"pushed_at":"2017-06-08T08:38:15.000Z","size":455,"stargazers_count":724,"open_issues_count":10,"forks_count":77,"subscribers_count":30,"default_branch":"master","last_synced_at":"2025-04-10T11:23:24.092Z","etag":null,"topics":["loader","objective-c","spinkit","spinner"],"latest_commit_sha":null,"homepage":null,"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/raymondjavaxx.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":"2014-01-02T06:16:18.000Z","updated_at":"2025-02-17T16:09:41.000Z","dependencies_parsed_at":"2022-09-01T19:31:45.860Z","dependency_job_id":null,"html_url":"https://github.com/raymondjavaxx/SpinKit-ObjC","commit_stats":null,"previous_names":[],"tags_count":4,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/raymondjavaxx%2FSpinKit-ObjC","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/raymondjavaxx%2FSpinKit-ObjC/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/raymondjavaxx%2FSpinKit-ObjC/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/raymondjavaxx%2FSpinKit-ObjC/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/raymondjavaxx","download_url":"https://codeload.github.com/raymondjavaxx/SpinKit-ObjC/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248639180,"owners_count":21137794,"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":["loader","objective-c","spinkit","spinner"],"created_at":"2024-11-13T06:13:38.627Z","updated_at":"2025-04-12T22:27:42.924Z","avatar_url":"https://github.com/raymondjavaxx.png","language":"Objective-C","funding_links":[],"categories":[],"sub_categories":[],"readme":"SpinKit-ObjC\n============\n\nUIKit port of [SpinKit](https://github.com/tobiasahlin/SpinKit).\n\nInstalling\n----------\n\n[CocoaPods](http://cocoapods.org/) is the recommended way for adding SpinKit to your project.\n\n    pod 'SpinKit', '~\u003e 1.1'\n\nIf you are not yet using CocoaPods, I definetly recommend you to check out their [Getting Started guide](http://guides.cocoapods.org/using/getting-started.html) and the [NSHipster article](http://nshipster.com/cocoapods/).\n\nUsage\n-----\n\nSimply instantiate `RTSpinKitView` with the desired style and add to your view hierarchy.\n\n    #import \u003cSpinKit/RTSpinKitView.h\u003e\n    ...\n    RTSpinKitView *spinner = [[RTSpinKitView alloc] initWithStyle:RTSpinKitViewStyleWave];\n    [self.view addSubview:spinner];\n\nYou can change the size of the spinner by manipulating the `spinnerSize` property. The default size is `37.0`.\n\n    spinner.spinnerSize = 100.0;\n    [spinner sizeToFit];\n\nAvailable styles:\n\n* `RTSpinKitViewStylePlane`\n* `RTSpinKitViewStyleCircleFlip`\n* `RTSpinKitViewStyleBounce`\n* `RTSpinKitViewStyleWave`\n* `RTSpinKitViewStyleWanderingCubes`\n* `RTSpinKitViewStylePulse`\n* `RTSpinKitViewStyleChasingDots`\n* `RTSpinKitViewStyleThreeBounce`\n* `RTSpinKitViewStyleCircle`\n* `RTSpinKitViewStyle9CubeGrid`\n* `RTSpinKitViewStyleWordPress`\n* `RTSpinKitViewStyleFadingCircle`\n* `RTSpinKitViewStyleFadingCircleAlt`\n* `RTSpinKitViewStyleArc`\n* `RTSpinKitViewStyleArcAlt`\n\nMBProgressHUD\n-------------\n\nSpinKit integrates nicely with the amazing [MBProgressHUD](https://github.com/jdg/MBProgressHUD) library:\n\n    RTSpinKitView *spinner = [[RTSpinKitView alloc] initWithStyle:RTSpinKitViewStyleWave color:[UIColor whiteColor]];\n\n    MBProgressHUD *hud = [MBProgressHUD showHUDAddedTo:self.view animated:YES];\n    hud.square = YES;\n    hud.mode = MBProgressHUDModeCustomView;\n    hud.customView = spinner;\n    hud.labelText = NSLocalizedString(@\"Loading\", @\"Loading\");\n\n    [spinner startAnimating];\n\nAcknowledgements\n----------------\n\nAnimations based on [SpinKit](https://github.com/tobiasahlin/SpinKit) by [Tobias Ahlin](https://github.com/tobiasahlin).\n\n[SpinKit Contributors](https://github.com/raymondjavaxx/SpinKit-ObjC/graphs/contributors).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fraymondjavaxx%2Fspinkit-objc","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fraymondjavaxx%2Fspinkit-objc","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fraymondjavaxx%2Fspinkit-objc/lists"}