Published on 2012年2月24日金曜日 2 appreciated comments »
いい情報。
'selectRow:byExtendingSelection:' is deprecatedとメッソドの廃止警告が出る場合、ヘッダーファイルでは、-(void)selectRow:(NSInteger)row byExtendingSelection:(BOOL)extend NS_DEPRECATED_MAC(10_0, 10_3);記述されていて、メッソドは使用できますが、警告がでます。main.hの先頭でtypedef NS_DEPRECATED_MAC(10_0, 10_6) null;とすれば、deprecated警告はすべて出なくなります。
RealMachiさん、こんにちは。なるほど null定義するんですね。情報ありがとうございました。
'selectRow:byExtendingSelection:' is deprecatedとメッソドの廃止警告が出る場合、ヘッダーファイルでは、
-(void)selectRow:(NSInteger)row byExtendingSelection:(BOOL)extend NS_DEPRECATED_MAC(10_0, 10_3);
記述されていて、メッソドは使用できますが、警告がでます。main.hの先頭で
typedef NS_DEPRECATED_MAC(10_0, 10_6) null;
とすれば、deprecated警告はすべて出なくなります。
RealMachiさん、こんにちは。
なるほど null定義するんですね。
情報ありがとうございました。