私のiOSアプリケーションには、すべてのビューで使用しなければならないコードのチャックがあります-関数/メソッドでそれを使用することはできません-#defineを使用して、その識別子を使用できる方法があるかどうか疑問に思っていました。必要とされている。以下はサンプルコードです。
#deinfe識別子に置き換えたいコード
[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(_gotECSlidingViewAnchorRightOrRightrNotification)
name:ECSlidingViewTopDidAnchorLeft
object:nil];
[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(_gotECSlidingViewAnchorRightOrRightrNotification)
name:ECSlidingViewTopDidAnchorRight
object:nil];
[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(_gotECSlidingViewTopDidResetNotification)
name:ECSlidingViewTopDidReset
object:nil];
だから私はそれを #define して ViewDidLoad メソッド内で使用するにはどうすればよいのだろうかと思っていましたか?