{"id":15487366,"url":"https://github.com/dblock/tsminiwebbrowser","last_synced_at":"2025-09-20T04:32:11.770Z","repository":{"id":16939935,"uuid":"19701827","full_name":"dblock/TSMiniWebBrowser","owner":"dblock","description":"In-app web browser control for iOS apps, maintained version of tonisalae/TSMiniWebBrowser.","archived":false,"fork":false,"pushed_at":"2016-11-08T20:07:57.000Z","size":5758,"stargazers_count":55,"open_issues_count":2,"forks_count":8,"subscribers_count":4,"default_branch":"master","last_synced_at":"2025-08-28T09:26:35.440Z","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/dblock.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","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-05-12T14:26:28.000Z","updated_at":"2025-07-21T06:43:20.000Z","dependencies_parsed_at":"2022-09-05T15:50:47.933Z","dependency_job_id":null,"html_url":"https://github.com/dblock/TSMiniWebBrowser","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/dblock/TSMiniWebBrowser","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dblock%2FTSMiniWebBrowser","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dblock%2FTSMiniWebBrowser/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dblock%2FTSMiniWebBrowser/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dblock%2FTSMiniWebBrowser/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dblock","download_url":"https://codeload.github.com/dblock/TSMiniWebBrowser/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dblock%2FTSMiniWebBrowser/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":276046889,"owners_count":25575876,"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-09-20T02:00:10.207Z","response_time":63,"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":[],"created_at":"2024-10-02T06:26:05.402Z","updated_at":"2025-09-20T04:32:11.180Z","avatar_url":"https://github.com/dblock.png","language":"Objective-C","funding_links":[],"categories":[],"sub_categories":[],"readme":"## TSMiniWebBrowser\n\nIn-app web browser control for iOS apps.\n\n[![Build Status](https://travis-ci.org/dblock/TSMiniWebBrowser.svg)](https://travis-ci.org/dblock/TSMiniWebBrowser)\n\n![Demo](Screenshots/demo.gif \"Demo animation\")\n\n## Screenshots\n\n[![Alt][screenshot1_thumb]][screenshot1]    [![Alt][screenshot2_thumb]][screenshot2]    [![Alt][screenshot3_thumb]][screenshot3]\n[screenshot1_thumb]: Screenshots/shot_01_thumb.png\n[screenshot1]: Screenshots/shot_01.png\n[screenshot2_thumb]: Screenshots/shot_02_thumb.png\n[screenshot2]: Screenshots/shot_02.png\n[screenshot3_thumb]: Screenshots/shot_03_thumb.png\n[screenshot3]: Screenshots/shot_03.png\n\n## Features\n\nTSMiniWebBrowser offers the following **features**:\n\n* Back and forward buttons.\n* Reload button (*optional*).\n* Activity indicator while page is loading.\n* Action button to open the current page in Safari (*optional*).\n* Displays the page title at the navigation bar (*optional*).\n* Displays the current URL at the top of the “Open in Safari” action sheet (*optional*).\n* Customizable bar style: default, black, black translucent.\n\nTSMiniWebBrowser **supports 3 presentation modes**:\n\n* **Navigation controller mode**. Using this mode you can push the browser to your navigation controller.\n* **Modal mode**. Using this mode you can present the browser modally. A title bar with a dismiss button will be automatically added.\n* **Tab bar mode**. Using this mode you can show the browser as a tab of a tab bar view controller. The toolbar with the navigation controls will be positioned at the top of the view automatically.\n\n## Install\n\n```\npod 'TSMiniWebBrowser@dblock', '~\u003e 1.1'\n```\n\n## Usage\n\nCreate and display the browser with defaults:\n\n```objc\nTSMiniWebBrowser *webBrowser = [[TSMiniWebBrowser alloc] initWithURL:[NSURL URLWithString:@\"http://indiedevstories.com\"]];\n[self.navigationController pushViewController:webBrowser animated:YES];\n```\n\nTry the [TSMiniWebBrowserDemo](TSMiniWebBrowserDemo) application. To test the tab bar mode go to the `application: didFinishLaunchingWithOptions:` method in `AppDelegate.m` and set the `BOOL wantTabBarDemo = NO;` value to `YES`.\n\n```objc\nTSMiniWebBrowser *webBrowser = [[TSMiniWebBrowser alloc] initWithURL:[NSURL URLWithString:@\"http://indiedevstories.com\"]];\nwebBrowser.showURLStringOnActionSheetTitle = YES;\nwebBrowser.showPageTitleOnTitleBar = YES;\nwebBrowser.showActionButton = YES;\nwebBrowser.showReloadButton = YES;\nwebBrowser.mode = TSMiniWebBrowserModeNavigation;\n\nwebBrowser.barStyle = UIBarStyleBlack;\n\nif (webBrowser.mode == TSMiniWebBrowserModeModal) {\n    webBrowser.modalDismissButtonTitle = @\"Home\";\n    [self presentModalViewController:webBrowser animated:YES];\n} else if(webBrowser.mode == TSMiniWebBrowserModeNavigation) {\n    [self.navigationController pushViewController:webBrowser animated:YES];\n}\n```\n\n## History\n\nThis is the maintained fork of [TSMiniWebBrowser](https://github.com/tonisalae/TSMiniWebBrowser), available via CocoaPods. It contains all the improvements from [DZTSMiniWebBrowser](https://github.com/DZamataev/DZTSMiniWebBrowser). Thanks to Toni Sala and Denis Zamataev for all the hard work. See [CHANGELOG](CHANGELOG.md) for details.\n\n## License\n\nMIT License, see [LICENSE](LICENSE) for details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdblock%2Ftsminiwebbrowser","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdblock%2Ftsminiwebbrowser","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdblock%2Ftsminiwebbrowser/lists"}