IOS
文章平均质量分 55
yang361
这个作者很懒,什么都没留下…
展开
-
IOS关于UITabBarController的使用
1.创建方式一 MainViewController *mvc = [[MainViewController alloc] init]; //设置标签栏上面视图控制器的标题和背景图片 mvc.title=@"主界面"; mvc.tabBarItem.image = [UIImage imageNamed:@"tab_0.png"]; UINavigat原创 2015-08-31 20:59:35 · 411 阅读 · 0 评论 -
浅谈UIAlertView
一、定义 View *alertView = [[UIAlertView alloc] initWithTitle:@"提示" message:@"您选择的当前城市",delegate:self cancelButtonTitle:@"取消" otherButtonTitles:@"确定",nil]; 如果需要添加多个按钮,可以在 otherButtonTitles 后面 直接添原创 2015-09-05 13:39:38 · 309 阅读 · 0 评论