这是我的实施线
@implementation ViewController
但我想添加pickerViewController
,但即使我这样做
@implementation ViewController, pickerViewController I can't do it
有什么不对吗?
答案 0 :(得分:0)
如果我正确理解你,并且你想在单个.m文件中使用两个实现指令,那么你不能用逗号分隔这些实现。每个@implementation都要求您明确添加@end。
@implementation ViewController
// code here
@end
@implementation pickerViewController
// other code here
@end