1

这是我的实现线

@implementation ViewController

但是我想添加pickerViewController但是即使我这样做了

@implementation ViewController, pickerViewController I can't do it 

有什么不对?

4

1 回答 1

0

如果我对您的理解正确,并且您希望在一个 .m 文件上有两个实现指令,那么您不能只用逗号分隔实现。每个@implementation 都要求您显式添加@end。

@implementation ViewController
    // code here
@end

@implementation pickerViewController
    // other code here
@end
于 2013-08-11T13:40:59.403 回答