美文网首页
iOS开发中杂七杂八的东西

iOS开发中杂七杂八的东西

作者: 庄老头 | 来源:发表于2018-04-26 10:39 被阅读7次

1、实现APP直接跳转到App Store搜索界面

[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"itms-apps://itunes.apple.com/WebObjects/MZStore.woa/wa/search?"]];

2、去掉UITabBarController顶部黑线

UIImage *image = [UIImage imageNamed:@"white"];

[tabBarController.tabBar setBackgroundImage:image];

[tabBarController.tabBar setShadowImage:image];

相关文章

网友评论

      本文标题:iOS开发中杂七杂八的东西

      本文链接:https://www.haomeiwen.com/subject/tydplftx.html