我的 iOS 应用程序中有一小段代码,我必须在每个视图中使用 - 不能在函数/方法中使用它 - 所以我想知道是否有任何方法可以使用 #define 并在其中使用它的标识符是必须的。下面是示例代码。
我想用#deinfe identifer 替换的代码
[[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 方法中使用它?