在接口或类扩展中声明协议

时间:2015-12-21 19:43:36

标签: objective-c protocols

在接口或类扩展中声明协议是否更好?

@interface

MyViewController.h

#include <UIKit/UIKit.h>
@interface MyViewController : UIViewController <UITableViewDelegate, UITableViewDatasource>
@property NSString *myName;
@end

VS

MyViewController.m

#include "MyViewController.h"

@interface MyViewController () <UITableViewDelegate, UITableViewDatasource>
@end

@implementation MyViewController

@end

0 个答案:

没有答案