如何从 - (IBaction)方法调用 - (void)方法?

时间:2014-12-03 21:08:20

标签: objective-c

我有一个负责URL的void方法,我想使用IBAction(UIbutton)来调用它来更新/更改URL,从而更改我的视图内容。

- (void) retrieveData {
   _NSMutableDictionary = contains parts of the url 
   NSString * thisUrlGetsPutTogetherFromKeysInTheMutableDict = @"www.myurl.url";
}


-(IBAction)btnChangeUrl:(UIButton *)sender {
   ADD something to the _NSMutableDictionary
   Call "retrieveData" to update and re-load the URL.
} 

我之前尝试使用谷歌搜索答案,但我似乎无法找到关于如何调用retrieveData的明确说明。还是初学者。有人可以帮助我吗?

1 个答案:

答案 0 :(得分:0)

[self retrieveData];

应该工作