0
我有一個關於XCODE分析命令的問題。當函數有@try @catch時xcode4分析不起作用
當函數具有@try @catch時,即使在@try @catch中沒有代碼,分析也不會檢查此函數。
// ok
- (void) testAnalyze {
// has tip for leak
Actor *rb = [[Actor alloc] init];
}
// wrong
- (void) testAnalyze {
// no tip for leak
Actor *rb = [[Actor alloc] init];
@try {
}
@catch (NSException *exception) {
}
}
是我設置錯誤的Xcode的任何設置?
非常感謝你!
PS:我XCODE的版本是4.2
我明白了,謝謝你這麼多。 – xp168