{"id":23845783,"url":"https://github.com/adambco/abcintroview","last_synced_at":"2025-05-07T04:10:33.857Z","repository":{"id":26911113,"uuid":"30373004","full_name":"AdamBCo/ABCIntroView","owner":"AdamBCo","description":"An easy way to add onboarding to your iOS application.","archived":false,"fork":false,"pushed_at":"2017-04-16T21:48:28.000Z","size":3044,"stargazers_count":256,"open_issues_count":4,"forks_count":44,"subscribers_count":6,"default_branch":"master","last_synced_at":"2025-04-11T21:38:11.074Z","etag":null,"topics":["objective-c"],"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/AdamBCo.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":"2015-02-05T19:08:38.000Z","updated_at":"2024-03-24T15:45:03.000Z","dependencies_parsed_at":"2022-08-21T02:20:23.300Z","dependency_job_id":null,"html_url":"https://github.com/AdamBCo/ABCIntroView","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AdamBCo%2FABCIntroView","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AdamBCo%2FABCIntroView/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AdamBCo%2FABCIntroView/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AdamBCo%2FABCIntroView/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/AdamBCo","download_url":"https://codeload.github.com/AdamBCo/ABCIntroView/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":252810273,"owners_count":21807759,"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":["objective-c"],"created_at":"2025-01-02T20:26:40.868Z","updated_at":"2025-05-07T04:10:33.835Z","avatar_url":"https://github.com/AdamBCo.png","language":"Objective-C","funding_links":[],"categories":[],"sub_categories":[],"readme":"ABCIntroView\n========================\nABCIntroView is an easy to use onboarding which allows you to introduce your users to the applicaiton before reaching the Main Screen.\n\n![drag](./SampleImages/ScreenShot_One.png)\n![drag](./SampleImages/ScreenShot_Two.png)\n![drag](./SampleImages/ScreenShot_Three.png)\n![drag](./SampleImages/ScreenShot_Four.png)\n\nTo use the ABCIntroView please do the following:\n\n1. Add the follwing files found in the CLASSES folder to your project:\n```\n        *ABCIntroView.h\n        *ABCIntroView.m\n```\n\n2. Import the ABCIntoView file to your RootViewController.\n\n3. Create an ABCIntroView property and add the ABCIntroViewDelegate.\n\n4. Add the following line of code to your ViewDidLoad:\n```\n    NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults];\n    if (![defaults objectForKey:@\"intro_screen_viewed\"]) {\n        self.introView = [[ABCIntroView alloc] initWithFrame:self.view.frame];\n        self.introView.delegate = self;\n        self.introView.backgroundColor = [UIColor greenColor];\n        [self.view addSubview:self.introView];  \n    }\n```\n\n5. Add the ABCIntroView Delegate Method:\n```\n#pragma mark - ABCIntroViewDelegate Methods\n\n-(void)onDoneButtonPressed{\n    //    Uncomment so that the IntroView does not show after the user clicks \"DONE\"\n    //    NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults]\n    //    [defaults setObject:@\"YES\"forKey:@\"intro_screen_viewed\"];\n    //    [defaults synchronize];\n    [UIView animateWithDuration:1.0 delay:0 options:UIViewAnimationOptionCurveEaseInOut animations:^{\n        self.introView.alpha = 0;\n    } completion:^(BOOL finished) {\n        [self.introView removeFromSuperview];\n    }];\n}\n```\n\nIf you have any questions about the project, please don't hesitate to ask.\n\nEnjoy! :)\n\nAdam\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fadambco%2Fabcintroview","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fadambco%2Fabcintroview","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fadambco%2Fabcintroview/lists"}