-3

我已经安装了 xcode 4.6,但我无法构建我的应用程序(它适用于 xcode 3.2):(

SEL sel = @selector(textField:didAddCellAtIndex:);
if ([self.delegate respondsToSelector:sel]) {
    [self.delegate performSelector:sel withObject:self withObject: (id)_cellViews.count-1];
}

帮助

4

1 回答 1

1
withObject:(id)_cellViews.count-1

是错误所在。您的代码将 _cellViews.count 转换为 id 指针,然后从中减去 1。

于 2013-07-23T13:55:34.353 回答