今天刘国斌老师讲了两个新的控件UIDateSpickers/UIAlertController,一个是日期的选择器,一个是警示窗口控制器。 一,开发使用日期时间选择器UIDatePicker的经验。UIDatePicker继承与UIControl,可以使用UIControl的方法- (void)a....
分类:
移动开发 时间:
2016-01-14 19:02:42
阅读次数:
166
Important:UIAlertViewis deprecated in iOS 8. (Note thatUIAlertViewDelegateis also deprecated.) To create and manage alerts in iOS 8 and later, instead...
分类:
编程语言 时间:
2016-01-08 21:59:13
阅读次数:
261
UIAlertController 的简单使用方法
分类:
其他好文 时间:
2016-01-08 13:18:17
阅读次数:
122
UIAlertController *alertController = [UIAlertController alertControllerWithTitle:@"提示" message:@"静" preferredStyle:(UIAlertControllerStyleAlert)]; ...
分类:
移动开发 时间:
2016-01-06 11:24:49
阅读次数:
137
//View 里面的一个按钮- (IBAction)showAlert:(id)sender { //ios8 之前 UIAlertView * alert=[[UIAlertView alloc] initWithTitle:@"你好,波...
分类:
移动开发 时间:
2016-01-02 01:01:07
阅读次数:
387
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{ //取出模型 CarGroup * group = self.dataArray[indexPath....
分类:
移动开发 时间:
2015-12-28 15:42:59
阅读次数:
211
在iOS8之前用UIActionSheet和UIAlertView来提供按钮选择和提示性信息,比如UIActionSheet可以这样写: UIActionSheet *actionSheet = [[UIActionSheet alloc] ...
分类:
移动开发 时间:
2015-12-26 18:30:34
阅读次数:
201
1 UIAlertController *alert = [UIAlertController alertControllerWithTitle:@"提示" message:@"您确定要删除该商品吗?" preferredStyle:UIAlertControllerStyleAlert]; 2 ....
分类:
移动开发 时间:
2015-12-25 17:05:59
阅读次数:
196
在IOS 9.0 后 苹果官方宣布不再或不推荐使用UIAlertView 和 UIActionSheet 由UIAlertController进行代替两者 用控制器将两者合二为一 很简单 方便 下面就是关于UIAlertView的常用方法#import "RootViewController.h"@...
分类:
移动开发 时间:
2015-12-23 10:38:06
阅读次数:
194
群号:49690168转:http://blog.csdn.net/liangliang103377/article/details/40078015iOS8推出了几个新的“controller”,主要是把类似之前的UIAlertView变成了UIAlertController,这不经意的改变,貌似...
分类:
移动开发 时间:
2015-12-21 15:50:57
阅读次数:
223