{"id":32317738,"url":"https://github.com/jinht/guidepages","last_synced_at":"2026-02-22T15:39:01.864Z","repository":{"id":56916877,"uuid":"75052586","full_name":"jinht/GuidePages","owner":"jinht","description":"引导页/首次安装引导页/渐变引导页/APP介绍页/功能介绍页","archived":false,"fork":false,"pushed_at":"2018-12-17T13:04:31.000Z","size":12619,"stargazers_count":124,"open_issues_count":2,"forks_count":21,"subscribers_count":5,"default_branch":"master","last_synced_at":"2025-09-30T18:13:58.927Z","etag":null,"topics":["first","guide","index","ios-sdk"],"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/jinht.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":"2016-11-29T06:55:38.000Z","updated_at":"2025-08-05T02:19:49.000Z","dependencies_parsed_at":"2022-08-21T03:50:53.247Z","dependency_job_id":null,"html_url":"https://github.com/jinht/GuidePages","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/jinht/GuidePages","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jinht%2FGuidePages","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jinht%2FGuidePages/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jinht%2FGuidePages/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jinht%2FGuidePages/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jinht","download_url":"https://codeload.github.com/jinht/GuidePages/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jinht%2FGuidePages/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":280607598,"owners_count":26359618,"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","status":"online","status_checked_at":"2025-10-23T02:00:06.710Z","response_time":142,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":["first","guide","index","ios-sdk"],"created_at":"2025-10-23T11:17:59.690Z","updated_at":"2025-10-23T11:18:05.808Z","avatar_url":"https://github.com/jinht.png","language":"Objective-C","funding_links":[],"categories":[],"sub_categories":[],"readme":"## GuidePages\n#### 引导页/首次安装引导页/APP介绍页/功能介绍页\n\n\n### 先上图，看一下是否符合你的场景吧！\n\u003cimg src=\"https://raw.githubusercontent.com/jinht/GuidePages/master/ReadMEImages/Gif/first.gif\" width=230 height=410 /\u003e\u0026emsp;\u003cimg src=\"https://raw.githubusercontent.com/jinht/GuidePages/master/ReadMEImages/Gif/third.gif\" width=230 height=410 /\u003e\n\n\n### Function Description\n1. 传统引导页功能\n2. 引导页之间渐变切换\n3. 简洁的个性化设置UI及切换动画\u003cbr\u003e\n\n\n### How to use\n#### 1. 传统引导页功能：通过传入图片名数组即可\n```oc\n/** 初始化方法\n *  coverNames：封面图片名数组（多为带文字图片）\n */\n- (id)initWithCoverImageNames:(NSArray *)coverNames;\n```\n\n#### 2. 引导页之间渐变切换：通过传入封面图片名数组（多为带文字图片）和背景图片名数组即可\n```oc\n/** 初始化方法\n *  coverNames：封面图片名数组（多为带文字图片）\n *  bgNames：背景图片名数组\n */\n- (id)initWithCoverImageNames:(NSArray *)coverNames withBackgroundImageNames:(NSArray *)bgNames;\n```\n\n#### 3 简洁的个性化UI设置及切换动画\n##### 3.1 设置`\u003cEnter\u003e`按钮，可以通过初始化方法传入自己定制的`\u003cEnter\u003e`按钮（按钮frame亦可以自己定制）\n```oc\n/** 初始化方法\n *  coverNames：封面图片名数组（多为带文字图片）\n *  bgNames：背景图片名数组\n *  withEnterButton：\u003cEnter\u003e按钮\n *  LRVC：引导页展示完成后出现的VC\n */\n- (id)initWithCoverImageNames:(NSArray *)coverNames withBackgroundImageNames:(NSArray *)bgNames withEnterButton:(UIButton *)button withLastRootViewController:(UIViewController *)LRVC;\n```\n\n##### 3.2 导页展示完成后切换至目标VC动画\n```oc\n/** 导页展示完成后切换至目标VC 动画时间\n *  default：0.5f\n */\n@property (nonatomic, assign) CGFloat animationDuration;\n/** 引导页展示完成后切换至目标VC 动画类型\n *  default：UIViewAnimationOptionTransitionCrossDissolve\n */\n@property (nonatomic, assign) UIViewAnimationOptions animationOptions;\n```\n\n##### 3.3 设置`pageControl`，可以通过以下参数设置pageControl\n```oc\n/** 是否隐藏pageControl（默认不隐藏） */\n@property (nonatomic, assign) BOOL isHiddenPageControl;\n/** pageControl的Y坐标(默认距离底部30.0)  */\n@property (nonatomic, assign) CGFloat pageControlY;\n/** pageControl的pageIndicatorTintColor（默认[UIColor grayColor]） */\n@property (nonatomic, strong) UIColor *pageIndicatorTintColor;\n```\n\n##### 3.4 设置`\u003c跳过\u003e`按钮\n```oc\n/** 是否添加\u003c跳过\u003e按钮（默认不需要） */\n@property (nonatomic, assign) BOOL isNeedSkipButton;\n/** \u003c跳过\u003e按钮背景图片名 */\n@property (nonatomic, copy) NSString *skipButtonBackgroundImageName;\n```\n注：假使自己传入\u003c跳过\u003e按钮背景图片，需要注意一下大小，按钮大小设置是根据图片大小动态设置的\n    \n\n### Remind\n* ARC\n* iOS \u003e= 8.0\n* iPhone \\ iPad \n       \n\n## Hope\n* If you find bug when used，Hope you can Issues me，Thank you or try to download the latest code of this framework to see the BUG has been fixed or not\n* If you find the function is not enough when used，Hope you can Issues me，I very much to add more useful function to this framework ，Thank you !\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjinht%2Fguidepages","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjinht%2Fguidepages","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjinht%2Fguidepages/lists"}