У меня есть такой метод:
<code>
- (void)methodWithParameter:(id)parameter {</p>
<p>}
, и я хочу вызвать его с помощью UIBarButtonItem
<code>
barButtonItem = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemAction target:self action:@selector(methodWithParameter:)];
Я хочу указать параметр, но не могу использовать withObject: after action: потому что яполучить предупреждение:
Нет -initWithBarButtonSystemItem: target: action: withObject: метод найден
Кто-нибудь может мне помочь с этим?