摘要:
IOS--UIPageControl的使用方法详细// UIPageControl的常用方法UIPageControl*onePageControl = [[UIPageControlalloc]init];onePageControl.frame=CGRectMake(10,100,300,30)... 阅读全文
摘要:
IOS--UIDatePicker时间选择器的使用方法详细 // 主要有下面四种类型:// 日期显示、// 日期和时间显示、//时间显示、//倒计时选择// UIDatePicker控件的常用方法时间选择控件UIDatePicker*oneDatePicker = [[UIDatePickerall... 阅读全文
摘要:
IOS--UIActivityIndicatorView的使用方法详细// UIActivityIndicatorView的常用方法活动指示器,就是旋转进度轮UIActivityIndicatorView*oneIndicatorView = [[UIActivityIndicatorViewall... 阅读全文
摘要:
IOS--UIAlertView的使用方法详细// UIAlertView的常用方法//标准样式UIAlertView*oneAlertView = [[UIAlertViewalloc]initWithTitle:@"标题"message:@"提示内容"delegate:selfcancelBut... 阅读全文