任何帮助表示赞赏.
解决方法 像这样的东西会起作用.这是纯文本按钮的示例:UIbutton *button = [UIbutton buttonWithType:UIbuttonTypeCustom];[button setFrame:CGRectMake(0,100,40)];[button setBackgroundcolor:[UIcolor clearcolor]];[button setTitle:@"Google" forState:UIControlStatenormal];[button setTitlecolor:[UIcolor bluecolor] forState:UIControlStatenormal];[button addTarget:self action:@selector(openGoogleURL) forControlEvents:UIControlEventtouchUpInsIDe];[self.vIEw addSubvIEw:button];
按钮的选择器:
-(voID)openGoogleURL{ [[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"https://www.Google.com"]];}总结
以上是内存溢出为你收集整理的用于启动URL的Xcode按钮全部内容,希望文章能够帮你解决用于启动URL的Xcode按钮所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)