0

内部に 3 つのコンテナー ビューを含むビューがあり、2 つにはピッカーがあり、最後の 1 つには 2 つのボタンがあります。ボタンの 1 つは URL を開き、2 つのピッカーで作成し、もう 1 つはリンクを更新します。両方のピッカーが (null) を返した場合、リンクは機能します。ピッカーの 1 つが値を返し、更新ボタンがクリックされると、リンクは機能しなくなります。

    - (void)viewDidLoad
 {
[super viewDidLoad];
// Do any additional setup after loading the view.

[_button_amazon_link setTitle:@"amazon.de" forState:UIControlStateNormal];
[_button_ifixit_link setTitle:@"ifixit.com" forState:UIControlStateNormal];

[self refreshview];
}
- (void)didReceiveMemoryWarning
{
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
}

-(void) refreshview{
AppDelegate *appdelegatestrings = (AppDelegate *) [[UIApplication sharedApplication] delegate];

appdelegatestrings.link_amazon = [NSString stringWithFormat:@"http://www.amazon.com/s/field-keywords=%@+%@", appdelegatestrings.model, appdelegatestrings.dead_thing];

appdelegatestrings.link_ifixit = [NSString stringWithFormat:@"http://www.ifixit.com/Device/%@/%@", appdelegatestrings.model, appdelegatestrings.dead_thing];
link_ifixit_ready = appdelegatestrings.link_ifixit;
link_amazon_ready = appdelegatestrings.link_amazon;

}
-(void) openurl : (NSString *)urlstring
{
NSLog(urlstring);
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:urlstring]];
}
- (IBAction)button_amazon_link_clicked:(id)sender {
[self openurl:link_amazon_ready];

}
- (IBAction)button_ifixit_link_clicked:(id)sender {
[self openurl:link_ifixit_ready];
}

- (IBAction)button_refresh:(id)sender {
[self refreshview];
}
4

1 に答える 1