https://github.com/xiaohange/fbmemoryprofilerstudy
FBMemoryProfiler,FBRetainCycleDetector,FBAllocationTracker
https://github.com/xiaohange/fbmemoryprofilerstudy
fballocationtracker fbmemoryprofiler fbretaincycledetector memory-allocation memory-cache memory-hacking memory-leak memory-leaks memory-management
Last synced: 2 months ago
JSON representation
FBMemoryProfiler,FBRetainCycleDetector,FBAllocationTracker
- Host: GitHub
- URL: https://github.com/xiaohange/fbmemoryprofilerstudy
- Owner: xiaohange
- License: mit
- Created: 2018-02-26T06:33:47.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-02-26T07:18:39.000Z (over 7 years ago)
- Last Synced: 2025-05-24T15:03:24.260Z (4 months ago)
- Topics: fballocationtracker, fbmemoryprofiler, fbretaincycledetector, memory-allocation, memory-cache, memory-hacking, memory-leak, memory-leaks, memory-management
- Language: Objective-C
- Homepage:
- Size: 128 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# FBMemoryProfilerStudy
[FBMemoryProfiler](https://github.com/facebook/FBMemoryProfiler)是Facebook开源的一款用于分析iOS内存使用和检测循环引用的工具库。### 三个开源工具:
- [FBRetainCycleDetector](https://github.com/facebook/FBRetainCycleDetector)
主要用于检测循环引用
- [FBAllocationTracker](https://github.com/facebook/FBAllocationTracker)
主要用于快速检测潜在的内存泄漏对象,并提供给 FBRetainCycleDetector 进行检测
- [FBMemoryProfiler](https://github.com/facebook/FBMemoryProfiler)
可视化工具,直接嵌入到 App 中,可以起到在 App 中直接查看内存使用情况,并筛选潜在泄漏对象的作用