我在使用当前6.4 Xcode打开旧iOS应用时遇到了问题。我认为该应用程序是在ARC之前的4.0下编写的。
所以我有以下代码和错误,以前运行正常没有任何错误:
-(void)onBooking {
self.data = [[TripV1 alloc] init];
}
- (void)setDetailType:(int)type {
[self.data setDetail:type]; //ERROR is thrown in this line
}
方法
ERROR: Multiple methods named 'setDetail:' found with mismatched result, parameter type or attributes.
错误:
{{1}}
关于如何解决这个问题的任何想法?