{"id":20248711,"url":"https://github.com/gokulgovind/glwalkthrough","last_synced_at":"2026-03-08T15:35:52.106Z","repository":{"id":56912191,"uuid":"345357122","full_name":"gokulgovind/GLWalkthrough","owner":"gokulgovind","description":"GLWalkthrough is an easily configurable plug-and-play tool to add walkthrough or coachmarker functionality to your app with ease.","archived":false,"fork":false,"pushed_at":"2021-03-16T15:18:40.000Z","size":1775,"stargazers_count":46,"open_issues_count":0,"forks_count":13,"subscribers_count":6,"default_branch":"master","last_synced_at":"2025-07-20T19:06:21.720Z","etag":null,"topics":["coach-marks","coachmar","cocoapods","ios","swift","walkthrough"],"latest_commit_sha":null,"homepage":"","language":"Swift","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/gokulgovind.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":"2021-03-07T13:42:52.000Z","updated_at":"2024-06-22T06:51:46.000Z","dependencies_parsed_at":"2022-08-20T20:20:49.708Z","dependency_job_id":null,"html_url":"https://github.com/gokulgovind/GLWalkthrough","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/gokulgovind/GLWalkthrough","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gokulgovind%2FGLWalkthrough","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gokulgovind%2FGLWalkthrough/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gokulgovind%2FGLWalkthrough/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gokulgovind%2FGLWalkthrough/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/gokulgovind","download_url":"https://codeload.github.com/gokulgovind/GLWalkthrough/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gokulgovind%2FGLWalkthrough/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":266769866,"owners_count":23981457,"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-07-23T02:00:09.312Z","response_time":66,"last_error":null,"robots_txt_status":null,"robots_txt_updated_at":null,"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":["coach-marks","coachmar","cocoapods","ios","swift","walkthrough"],"created_at":"2024-11-14T09:49:12.049Z","updated_at":"2026-03-08T15:35:52.055Z","avatar_url":"https://github.com/gokulgovind.png","language":"Swift","funding_links":[],"categories":[],"sub_categories":[],"readme":"# GLWalkthrough\n\n[![CI Status](https://img.shields.io/travis/gokulgovind/GLWalkthrough.svg?style=flat)](https://travis-ci.org/gokulgovind/GLWalkthrough)\n[![Version](https://img.shields.io/cocoapods/v/GLWalkthrough.svg?style=flat)](https://cocoapods.org/pods/GLWalkthrough)\n[![License](https://img.shields.io/cocoapods/l/GLWalkthrough.svg?style=flat)](https://cocoapods.org/pods/GLWalkthrough)\n[![Platform](https://img.shields.io/cocoapods/p/GLWalkthrough.svg?style=flat)](https://cocoapods.org/pods/GLWalkthrough)\n\n## Example\n\nTo run the example project, clone the repo, and run `pod install` from the Example directory first.\n\n## Requirements\n\n## Installation\n\nGLWalkthrough is available through [CocoaPods](https://cocoapods.org). To install\nit, simply add the following line to your Podfile:\n\n```ruby\npod 'GLWalkthrough'\n```\n### Preview\n\u003cimg src=\"Designs/screen_shot_bottom.png\" width=380\u003e \n\u003cimg src=\"Designs/screen_shot_center.png\" width=380\u003e \n\u003cimg src=\"Designs/screen_shot_top.png\" width=380\u003e \n\n### Public Attribute\n|  Attribute name    |  Specific introduction of attributes |\n| :------------: | :------------: | \n| `title` | titile to be shown on each object |\n| `subtitle` | subtitle to be shown on each object |\n| `nextBtnTitle` | button title for next button. (default text is \"Next\") |\n| `isSkipEnabled` | bool to enable/disable skip button (applies to each individual object) |\n| `position` | specify the position of object to be highlighted (like bottomLeft, bottomCenter, topRight) |\n| `frameOverWindow` | CGRect of object to be highlighted |\n\n\n### DataSources\n|  Attribute name    |  Specific introduction of attributes |\n| :------------: | :------------: | \n| `func numberOfItems() -\u003e Int` | gets number of UI object to be highlighted |\n| `func configForItemAtIndex(index:Int) -\u003e GLWalkThroughConfig` | Provide detail info of object to be highlighted in form of GLWalkThroughConfig  |\n\n\n### Delegates\n|  Attribute name    |  Specific introduction of attributes |\n| :------------: | :------------: | \n| `func didSelectNextAtIndex(index:Int)` | triggered on tap of next button |\n| `func didSelectSkip(index:Int)` | triggered when user taps skip  |\n\n### Sample\n`Init`\n```let coachMarker = GLWalkThrough()\ncoachMarker.dataSource = self\ncoachMarker.delegate = self\ncoachMarker.show()\n```\n`Datasource`\n```\nextension ViewController: GLWalkThroughDataSource {\n    \n    func numberOfItems() -\u003e Int {\n        return 1\n    }\n    \n    func configForItemAtIndex(index: Int) -\u003e GLWalkThroughConfig {\n        switch index {\n        case 0:\n            var config = GLWalkThroughConfig()\n            config.title = \"Home Screen\"\n            config.subtitle = \"Here you can explore Services, Articles, plans\"\n            config.frameOverWindow = CGRect(x: 50, y: 50, width: 100, height: 100)\n            config.position = .topLeft\n            return config\n        default:\n            return GLWalkThroughConfig()\n        }\n    }\n}\n```\n## Author\n\ngokulgovind, gokulece26@gmail.com\n\n## License\n\nGLWalkthrough 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%2Fgokulgovind%2Fglwalkthrough","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgokulgovind%2Fglwalkthrough","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgokulgovind%2Fglwalkthrough/lists"}