[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"project-7113":3},{"id":4,"name":5,"fullName":6,"owner":7,"repo":5,"description":8,"homepage":9,"htmlUrl":10,"language":11,"languages":10,"totalLinesOfCode":10,"stars":12,"forks":13,"watchers":14,"openIssues":15,"contributorsCount":15,"subscribersCount":15,"size":15,"stars1d":15,"stars7d":15,"stars30d":15,"stars90d":15,"forks30d":15,"starsTrendScore":15,"compositeScore":16,"rankGlobal":10,"rankLanguage":10,"license":17,"archived":18,"fork":18,"defaultBranch":19,"hasWiki":18,"hasPages":18,"topics":20,"createdAt":10,"pushedAt":10,"updatedAt":29,"readmeContent":30,"aiSummary":31,"trendingCount":15,"starSnapshotCount":15,"syncStatus":32,"lastSyncTime":33,"discoverSource":34},7113,"Peek","shaps80\u002FPeek","shaps80","All new design. Inspect your iOS application at runtime.","http:\u002F\u002Fshaps.me\u002Fpeek",null,"Swift",2572,94,47,0,57.93,"MIT License",false,"master",[21,22,23,24,25,26,27,28],"carthage","inspect","inspectors","ios","peek","slack","swift","vimeo","2026-06-12 04:00:32","[![Peek Site][gif]][peek]\n\n[![Carthage][carthage-0]][0]\n[![Version][pods-1]][1]\n[![License][pods-2]][2]\n[![Language][pods-3]][3]\n[![Platform][pods-4]][4]\n\n# Peek: All new design\n\nPeek 5 with an all new design and all new features. Whether you're a developer, designer or QA\u002Ftester, Peek can help you at all stages of your development process.\n\n[Watch the Promo][vimeo] to see it in action.\n\n## Unified Inspectors\nAll inspectors and attributes have now been unified into a single window, making inspection simpler and faster than ever before.\n\n## Collapsible Groups\nFeeling overwhelmed with all the information Peek has to offer? Simply tap the header to expand\u002Fcollapse any section. Peek will even remember your choice across launches!\n\n## Nested Inspectors\nPeek now supports nested Inspectors. This powerful feature allows Peek to surface even more detail about your application. In fact Peek 5.0 more than doubles the number of attributes it can inspect.\n\n## Previews\nViews, images, colours and more can now provide snapshot previews to help you better identify what you’re inspecting.\n\n## Reporting\nAn all new reporting system allows you to export screenshots, metadata and even suggested values using the iOS native share sheet.\n\n## Accessibility\nPeek itself is now more accessible with Dynamic Type, but Peek can also surface accessibility details from your application.\n\n## Search\nYou can now search within Peek, making it easier than ever to inspect your apps.\n\n## Less Code & Dependencies\n\nThanks to an all new architecture Peek is also now smaller. Providing more features with much less code, leaving a very small footprint on your application.\n\n\n# Ready to get started?\n\n## Designers & Testers\n\n- Simply press one of your volume key(s) to show & hide Peek\n- Now tap or drag your finger across the screen\n- Tap the inspectors button (or double tap anywhere on the screen) to show the Inspectors for the selected view\n\nYou can't get simpler than that!\n\n## Developers\n\n### Device\n\nThe simplest way to integrate Peek into your project is to use `Cocoapods` or `Carthage`:\n\n```ruby\n# Cocoapods\npod 'Peek', :configurations => ['Debug']\n\n# Carthage\ngithub \"shaps80\u002FPeek\" ~> 5.1.0\n```\n\nYou only need 1 line of code to enable Peek in your application:\n\n`window?.peek.enabled = true`\n\n### Simulator\n\nWhen running in the Simulator you'll need a couple of extra lines:\n\n```swift\n\u002F\u002F Your AppDelegate\noverride func motionBegan(_ motion: UIEventSubtype, with event: UIEvent?) {\n    \u002F\u002F iOS 8\u002F9 requires device motion handlers to be on the AppDelegate\n    window?.peek.handleShake(motion)\n}\n```\n\nor\n\n```swift\n\n\u002F\u002F Your ViewController\noverride var canBecomeFirstResponder: Bool {\n    return true\n}\n\noverride func motionBegan(_ motion: UIEventSubtype, with event: UIEvent?) {\n    \u002F\u002F iOS 10 now requires device motion handlers to be on a UIViewController\n    UIApplication.shared.keyWindow?.peek.handleShake(motion)\n}\n```\n\nNow you can press `CMD+CTRL+Z` (or use the Menu option) to show\u002Fhide Peek in your Simulator.\n\n### Contributing\n\nContributions to Peek are welcomed and encouraged!\n\nIt is easy to get involved. Please see the [Contributing guide][contrib-guide] for more details.\n\n[A list of contributors is available through GitHub.][contrib-list]\n\nTo give clarity of what is expected of our community, Peek has adopted the code of conduct defined by the Contributor Covenant. This document is used across many open source communities, and I think it articulates my values well. For more, see the [Code of Conduct][code-of-conduct].\n\n# What is Peek?\n\n[![Peek on Vimeo][preview]][vimeo]\n\nPeek is an open source framework that provides runtime inspection of your application while its running on your device (or Simulator).\n\n- Developers can use Peek to inspect their user interfaces at runtime.\n- Designers can verify that the applications meets their design specifications.\n- Testers and QA can check accessibility identifiers, validate behaviour and report issues.\n\nPeek is a tool to aide you at all stages of your development process.\n\n# How does Peek work?\n\nPeek scans your entire user interface on the screen then provides overlays with layout information and attribute inspectors.\n\nPeek includes an intelligent filtering system to best determine which views you care about while ignoring those you are not likely to be interested in.\n\nFor example, by default Peek will not show you many of Apple's system components unless they are subclassed.\n\nPeek presents itself in its own window that sits directly on top of your own app's user interface to ensure that it doesn't interfere with normal functionality.\n\nPeek also allows you to test all supported orientations on both iPhone and iPad.\n\nMost importantly Peek doesn’t interfere with your applications logic or user interface in anyway. It provides read-only inspection to guarantee you’re seeing live-values only!\n\n# Demo\n\nIf you're not ready to integrate Peek into your own project, You can simply download this repo and run the sample project included :)\n\nIts a small app that perfectly demonstrates the power of Peek!\n\n# Configuring Peek\n\nPeek allows many options to be configured, allowing you more control over how Peek is configured as well as reporting options:\n\n```swift\nwindow?.peek.enableWithOptions { options in\n    options.theme = .black\n    options.activationMode = .auto\n    options.shouldIgnoreContainers = true\n\n    \u002F*\n      Sometimes it can also be useful to include additional metadata with each report.\n     *\u002F\n    options.metaData = [ \"Environment\": \"UAT\" ]\n}\n```\n\n# Safety First\n\nPeek is designed to be as safe as possible. Peek will never retain objects from your application. It will never use a background thread. Peek won't even run unless you explicitly enable it!\n\nGo ahead, take a Peek at your app now :)\n\n# Supported Platforms and Versions\n\nPeek is officially supported (and tested) with the following configurations:\n\n- iOS 9.0+ (Swift and Objective-C)\n\n> Note: if you're having issues with Swift versions when using Cocoapods, try adding the following to your `Podfile`:\n\n```ruby\npost_install do |installer|\n    installer.pods_project.targets.each do |target|\n        if target.name == \"Peek\" then\n            target.build_configurations.each do |config|\n                config.build_settings['SWIFT_VERSION'] = '4.0'\n            end\n        end\n    end\nend\n```\n\n# Swift Versions\n\n**Swift 4.x**\n\nCurrently supported by version Peek v4.0 – v5.0\n\n**Swift 3.x**\n\nNot officially supported. Its recommended you update to Swift 4 and Peek 5.0\n\n**Swift 2.3**\n\nIf you need Swift 2.3 support, update your Podfile as such:\n\n`pod 'Peek', '2.3'`\n\n**Swift 2.2**\n\nIf you need Swift 2.2 support, update your Podfile as such:\n\n`pod 'Peek', '2.0'`\n\n---\n\n# Attribution\n\nOriginal concept, code and app design by [@shaps][5]\u003Cbr \u002F>\n\nIcons in the demo app found on [The Noun Project][6].\nArtwork by [Vitaliy Gorbachev][7]\n\n[0]:  https:\u002F\u002Fgithub.com\u002FCarthage\u002FCarthage\n[1]:\thttp:\u002F\u002Fcocoapods.org\u002Fpods\u002FPeek\n[2]:\thttp:\u002F\u002Fcocoapods.org\u002Fpods\u002FPeek\n[3]:\thttp:\u002F\u002Fcocoadocs.org\u002Fdocsets\u002FPeek\n[4]:\thttp:\u002F\u002Fcocoapods.org\u002Fpods\u002FPeek\n[5]:\thttps:\u002F\u002Ftwitter.com\u002Fshaps \"Shaps on Twitter\"\n[6]:\thttps:\u002F\u002Fthenounproject.com\n[7]:\thttps:\u002F\u002Fthenounproject.com\u002Fvitalikexpert\n\n[pods-1]:\thttps:\u002F\u002Fimg.shields.io\u002Fcocoapods\u002Fv\u002FPeek.svg?style=flat\n[pods-2]:\thttps:\u002F\u002Fimg.shields.io\u002Fcocoapods\u002Fl\u002FPeek.svg?style=flat\n[pods-3]:\thttps:\u002F\u002Fimg.shields.io\u002Fbadge\u002Flanguage-swift-ff69b4.svg\n[pods-4]:\thttps:\u002F\u002Fimg.shields.io\u002Fcocoapods\u002Fp\u002FPeek.svg?style=flat\n[carthage-0]: https:\u002F\u002Fimg.shields.io\u002Fbadge\u002FCarthage-✓-4BC51D.svg?style=flat\n\n[peek]: https:\u002F\u002Fshaps.me\u002Fpeek\n[preview]: https:\u002F\u002Fgithub.com\u002Fshaps80\u002FPeek\u002Fraw\u002Fmaster\u002Fpreview.jpg\n[vimeo]: https:\u002F\u002Fplayer.vimeo.com\u002Fvideo\u002F261323610\n[gif]: https:\u002F\u002Fgithub.com\u002Fshaps80\u002FPeek\u002Fraw\u002Fmaster\u002Fpreview.gif\n[contrib-guide]: https:\u002F\u002Fgithub.com\u002Fshaps80\u002FPeek\u002Fblob\u002Fmaster\u002FCONTRIBUTING.md\n[contrib-list]: https:\u002F\u002Fgithub.com\u002Fshaps80\u002FPeek\u002Fgraphs\u002Fcontributors\n[code-of-conduct]: https:\u002F\u002Fgithub.com\u002Fshaps80\u002FPeek\u002Fblob\u002Fmaster\u002FCODE_OF_CONDUCT.md\n","Peek 是一个专为 iOS 应用设计的运行时检查工具，旨在帮助开发者、设计师和测试人员在开发过程中更高效地进行应用调试。其核心功能包括统一的检查器窗口、可折叠的信息组、嵌套检查器以及预览功能等，这些都使得用户能够更加直观快捷地获取应用程序的各种属性信息。此外，Peek 还提供了新的报告系统以方便导出截图与元数据，并且支持搜索功能，让查找特定元素变得容易。该工具特别适合于需要频繁调整UI布局或验证应用行为是否符合预期的设计与测试场景中使用。通过简单的集成步骤（如Cocoapods或Carthage），开发人员可以轻松将其添加到自己的项目里，在真实设备或模拟器上启用Peek功能。",2,"2026-06-11 03:10:35","top_language"]