我有一个Objective - C Class
(命名Constants
),有些Method
人有Argument
发言权...
+(void)someMethod :(id)arg
{
//Some Stuff...
}
我想将此方法附加到一些UIBarButtonItem
(添加到Navigation Bar
其他一些UIViewController
)。我rightBarButton
在导航栏中。
UIBarButtonItem *rightBarButton = [[UIBarButtonItem alloc] initWithTitle:@"someTitle" style:UIBarButtonItemStyleBordered target:self action:@selector(someMethod)];
问题:-someMethod
从 someOther Class
和 some中调用它的最佳方式是什么Argument
?
更新 :
我发现我们可以使用Class Object
它Constant Class
来从其他一些target
调用,但是在这种情况下,该方法包含以及如何传递参数。-someMethod
View Controller
Argument