提高效率工具iOS极限编程

iOS Infer 静态代码分析

2016-11-19  本文已影响362人  码农二哥

杂谈

理论基础(程序验证)

摘录

About Infer

Limitations,etc

安装Infer

基本命令

Hello world Objective-C(单个文件)

// Hello.m
#import <Foundation/Foundation.h>

@interface Hello: NSObject
@property NSString* s;
@end

@implementation Hello
NSString* m() {
    Hello* hello = nil;
    return hello->_s;
}
@end

Hello world iOS(普通的XCode工程)

pod式工程

References

  1. Infer中文介绍
上一篇下一篇

猜你喜欢

热点阅读