我试图在我的首选项套件中添加一个按钮,以便在Safari(或Pref Bundle)中打开一个URL。
我看这个:https://github.com/hbang/NotiQuiet/blob/master/prefs/ADNQListController.m 但是,如果是eccc,我就不会理解别人......
我想要一个按钮(例如#34;我的网站")打开www.mywebsite.com
谢谢大家!
答案 0 :(得分:0)
将以下字典添加到您的首选项plist:
{
action = link;
cell = PSButtonCell;
label = "Google";
}
您的捆绑包的以下方法:
- (void)link {
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"https://www.google.com"]];
}