LoginSignup
16
16

More than 5 years have passed since last update.

自作ライブラリのMethod/PropertyをDeprecatedにする。

Posted at

公開している自作ライブラリ中のMethodやPropertyをDeprecated(廃止予定)とするときは、宣言の末尾に __attribute__ ((deprecated)) を追加する。

@property (nonatomic) NSString *someString __attribute__ ((deprecated));
- (void)someMethod __attribute__ ((deprecated));

互換性確保のために他の箇所でDeprecatedなものを使用する場合、そのままだとWarningが出る。
これを抑制するためには、該当する箇所を

#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wdeprecated-declarations"

#pragma clang diagnostic pop

で挟む。

参考

16
16
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
16
16