i think there may be option like launch url in ib
can anybody answer it if u know,,,,,
i think there may be option like launch url in ib
can anybody answer it if u know,,,,,
Not sure what "i want to display a launch url name", but if you want to open a URL in safari you can use
[[UIApplication sharedApplication] openURL:url];
Something like that?
-(IBAction) buttonPressed {
NSURL *url = [NSURL URLWithString:@"http://www.url.com"];
[[UIApplication sharedApplication] openURL:url];
}