{"id":13742784,"url":"https://github.com/Sumi-Interactive/SIAlertView","last_synced_at":"2025-05-09T00:31:46.152Z","repository":{"id":8291688,"uuid":"9831253","full_name":"Sumi-Interactive/SIAlertView","owner":"Sumi-Interactive","description":"An UIAlertView replacement with block syntax and fancy transition styles.","archived":false,"fork":false,"pushed_at":"2018-06-22T15:53:00.000Z","size":939,"stargazers_count":2511,"open_issues_count":67,"forks_count":421,"subscribers_count":115,"default_branch":"master","last_synced_at":"2025-04-09T17:00:55.146Z","etag":null,"topics":[],"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/Sumi-Interactive.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2013-05-03T07:48:23.000Z","updated_at":"2025-03-04T11:17:16.000Z","dependencies_parsed_at":"2022-08-28T05:30:22.394Z","dependency_job_id":null,"html_url":"https://github.com/Sumi-Interactive/SIAlertView","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/Sumi-Interactive%2FSIAlertView","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Sumi-Interactive%2FSIAlertView/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Sumi-Interactive%2FSIAlertView/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Sumi-Interactive%2FSIAlertView/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Sumi-Interactive","download_url":"https://codeload.github.com/Sumi-Interactive/SIAlertView/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248279124,"owners_count":21077386,"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":[],"created_at":"2024-08-03T05:00:36.205Z","updated_at":"2025-05-09T00:31:45.642Z","avatar_url":"https://github.com/Sumi-Interactive.png","language":"Objective-C","readme":"SIAlertView\n=============\n\nAn UIAlertView replacement with block syntax and fancy transition styles. As seen in [Grid Diary](http://griddiaryapp.com/).\n\n[![Flattr this git repo](http://api.flattr.com/button/flattr-badge-large.png)](https://flattr.com/submit/auto?user_id=Sumi-Interactive\u0026url=https://github.com/Sumi-Interactive/SIAlertView\u0026title=SIAlertView\u0026tags=github\u0026category=software)\n\n## Preview\n\n![SIAlertView Screenshot](https://github.com/Sumi-Interactive/SIAlertView/raw/master/screenshot.png)\n\n## Features\n\n- use window to present\n- happy with rotation\n- block syntax\n- styled transitions\n- queue support\n- UIAppearance support\n\n## Installation\n\n### Cocoapods(Recommended)\n\n1. Add `pod 'SIAlertView'` to your Podfile.\n2. Run `pod install`\n\n### Manual\n\n1. Add all files under `SIAlertView/SIAlertView` to your project\n2. Add `QuartzCore.framework` to your project\n\n## Requirements\n\n- iOS 5.0 and greater\n- ARC\n\n(If you are having any problems, just select your project -\u003e Build Phases -\u003e Compile Sources, double-click the SIAlertView and add `-fobjc-arc`)\n\n## Examples\n\n**Code:**\n\n```objc\nSIAlertView *alertView = [[SIAlertView alloc] initWithTitle:@\"SIAlertView\" andMessage:@\"Sumi Interactive\"];\n\n[alertView addButtonWithTitle:@\"Button1\"\n                         type:SIAlertViewButtonTypeDefault\n                      handler:^(SIAlertView *alert) {\n                          NSLog(@\"Button1 Clicked\");\n                      }];\n[alertView addButtonWithTitle:@\"Button2\"\n                         type:SIAlertViewButtonTypeDestructive\n                      handler:^(SIAlertView *alert) {\n                          NSLog(@\"Button2 Clicked\");\n                      }];\n[alertView addButtonWithTitle:@\"Button3\"\n                         type:SIAlertViewButtonTypeCancel\n                      handler:^(SIAlertView *alert) {\n                          NSLog(@\"Button3 Clicked\");\n                      }];\n\nalertView.willShowHandler = ^(SIAlertView *alertView) {\n    NSLog(@\"%@, willShowHandler\", alertView);\n};\nalertView.didShowHandler = ^(SIAlertView *alertView) {\n    NSLog(@\"%@, didShowHandler\", alertView);\n};\nalertView.willDismissHandler = ^(SIAlertView *alertView) {\n    NSLog(@\"%@, willDismissHandler\", alertView);\n};\nalertView.didDismissHandler = ^(SIAlertView *alertView) {\n    NSLog(@\"%@, didDismissHandler\", alertView);\n};\n\nalertView.transitionStyle = SIAlertViewTransitionStyleBounce;\n\n[alertView show];\n```\n\n## Credits\n\nSIAlertView was created by [Sumi Interactive](https://github.com/Sumi-Interactive) in the development of [Grid Diary](http://griddiaryapp.com/).\n\n## License\n\nSIAlertView is available under the MIT license. See the LICENSE file for more info.\n","funding_links":[],"categories":["Objective-C  Stars 1000以内排名整理","Objective-C","etc"],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FSumi-Interactive%2FSIAlertView","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FSumi-Interactive%2FSIAlertView","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FSumi-Interactive%2FSIAlertView/lists"}