1

これは私の実装ラインです

@implementation ViewController

ただし、追加したいのですが、追加pickerViewControllerしても

@implementation ViewController, pickerViewController I can't do it 

何か問題がありますか?

4

1 に答える 1

0

私があなたを正しく理解していて、1 つの .m ファイルに 2 つの実装ディレクティブが必要な場合は、実装をカンマで区切ることはできません。@implementation ごとに、明示的に @end を追加する必要があります。

@implementation ViewController
    // code here
@end

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