Tag: Objective-C
.mファイルの先頭あたりで次のように記述する。
@interface RootViewController() - samplePrivateMethod; @end @implementation RootViewController
@interface DetailViewController () <TTTAttributedLabelDelegate, UIActionSheetDelegate> @property (nonatomic, copy) NSString *espressoDescription; @property (nonatomic) TTTAttributedLabel *attributedLabel; @end
[[NSMutableArray class] isSubclassOfClass:[NSArray class]];
引数のクラスか継承したクラスのインスタンスであるかどうか
NSMutableArray *array = [[NSMutableArray alloc] init]; [array isKindOfClass[NSArray class]];
引数のクラスのインスタンスであるかどうか
NSMutableArray *array = [[NSMutableArray alloc] init]; [array isKindOfClass[NSArray class]];