https://github.com/panmingyang2009/vcprofiler
An accurate and simple tool uses KVO to measure the time cost of every view controller.
https://github.com/panmingyang2009/vcprofiler
ios kvo objective-c performance performance-analysis profiler runtime swift swizzle timing viewcontroller
Last synced: 2 months ago
JSON representation
An accurate and simple tool uses KVO to measure the time cost of every view controller.
- Host: GitHub
- URL: https://github.com/panmingyang2009/vcprofiler
- Owner: panmingyang2009
- License: apache-2.0
- Created: 2018-06-14T08:55:33.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2018-07-31T05:45:26.000Z (almost 7 years ago)
- Last Synced: 2024-09-19T20:31:14.533Z (9 months ago)
- Topics: ios, kvo, objective-c, performance, performance-analysis, profiler, runtime, swift, swizzle, timing, viewcontroller
- Language: Objective-C
- Homepage: http://punmy.cn/2018/06/18/15278496835424.html
- Size: 36.1 KB
- Stars: 67
- Watchers: 3
- Forks: 8
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# VCProfiler
An **accurate** and **simple** tool uses KVO to measure the time cost of **every** view controller.
## Usage
You can install VCProfiler either by CocoaPods or dragging source files directly into your project.
If you are using CocoaPods, please add following line to your `podfile`:```ruby
pod 'VCProfiler'
```After that, just build and run your App. VCProfiler will print timestamps to console automatically when a view controller show up.
## License
```
Copyright 2018 Pan MingyangLicensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License athttp://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
```