// 1.
TestViewController <TestViewControllerProtocol> *testVC = [TestViewController new];
// 2.
TestViewController *testVC = [TestViewController new];
- 上記の参照の違いは何ですか?
- 2番目のものよりも最初のものを使用する方が望ましいのはいつですか?
TestViewController.h
@interface TestViewController : UIViewController <TestViewControllerProtocol>