Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Vvdocumenter Xcode | 8,468 | 6 years ago | July 31, 2014 | 63 | mit | Objective-C | ||||
Xcode plug-in which helps you write documentation comment easier, for both Objective-C and Swift. | ||||||||||
Injectionforxcode | 6,508 | 10 months ago | February 26, 2017 | 77 | mit | Objective-C | ||||
Runtime Code Injection for Objective-C & Swift | ||||||||||
Awesome Xcode Extensions | 2,863 | 2 months ago | Ruby | |||||||
Awesome native Xcode extensions. | ||||||||||
Colorsense For Xcode | 2,859 | 7 years ago | September 26, 2022 | 48 | Objective-C | |||||
Plugin for Xcode to make working with colors more visual | ||||||||||
Clangformat Xcode | 2,790 | 3 years ago | September 26, 2022 | 32 | mit | Objective-C | ||||
Xcode plug-in to to use clang-format from in Xcode and consistently format your code with Clang | ||||||||||
Rtimageassets | 2,505 | 4 years ago | September 26, 2022 | 9 | mit | Objective-C | ||||
A Xcode plugin to automatically generate 2x, 1x image from 3x image for you, or upscale to 3x from 2x | ||||||||||
Grpc Swift | 1,772 | 2 days ago | 26 | February 11, 2022 | 76 | apache-2.0 | Swift | |||
The Swift language implementation of gRPC. | ||||||||||
Xtodo | 1,570 | 7 years ago | December 07, 2013 | 29 | Objective-C | |||||
Xcode plugin to collect and list the `TODO`,`FIXME`,`???`,`!!!!` | ||||||||||
Dash Plugin For Xcode | 1,540 | 2 years ago | July 16, 2022 | 2 | Objective-C | |||||
Plugin for Xcode to integrate the Dash documentation viewer app | ||||||||||
Codepilot | 1,317 | 3 years ago | July 16, 2022 | 7 | apache-2.0 | Objective-C | ||||
Code Pilot is an Xcode plugin which lets you woosh through your code and save a lot (and we mean a *lot*) of your time. |
Xcode Plugin that displays coverage data in the text editor
###Menu options:
###Installation instructions: Install via Alcatraz
OR
Open the project in XCode and build it. This should auto-install it for you and just restart XCode to begin using!
To uninstall, delete the XCoverage directory from ~/Library/Application Support/Developer/Shared/Xcode/Plug-ins
###See test app for example
###Generating coverage data This plugin does not actually generate coverage data for you, since there are various workflows that people use to do this. However if you don't currently have coverage data, the sample app includes some build scripts that can help you get started.
#####Steps: #####1. Enable project settings to begin generating coverage information
#####2. Setup the export_build_vars.py script in build phases
This script is used to export any necessary environment variables from your latest build. The main reason this is needed is that many of the env variables at run-time are completely different in unrelated to your most recent build. They are also usually relative paths instead of absolute like these build variables.
#####3. Add pre-action script to the test section of your scheme
This script will clear any previous .gcda files from your target_object_dir, which helps ensure that this test run will be isolated in the coverage data.
#####4. Add post-action script to the test section of your scheme
This script will run gcov on all of your gcda files generated by your tests running in the app, generating .gcov files to be parsed by the plugin.