我有一个负责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的明确说明。还是初学者。有人可以帮助我吗?
答案 0 :(得分:0)
[self retrieveData];
应该工作