iOS基本控件系列

1.UIControlEventTouchDown 单点触摸按下事件:用户点触屏幕,或者又有新手指落下的时候。 2.UIControlEventTouchDownRepeat 多点触摸按下事件,点触计数大于1:用户按下第二、三、或第四根手指的时候。 3.UIControlEventTouchDragIns...

发布 0 条评论

1.检查指定源是否在设备上可用 + (BOOL)isSourceTypeAvailable:(UIImagePickerControllerSourceType)sourceType; //检查照片源是否可用 [UIImagePickerController isSourceTypeAvailable:UIImagePickerControllerSourceTypePhotoLibr...

发布 0 条评论

1.title 获取或设置UIAlertView上的标题。 2.message 获取或设置UIAlertView上的消息 UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:@"Title" message:@"message" delegate:self cancelButtonTitle:@"取消" otherButt...

发布 0 条评论

1. activityIndicatorViewStyle 设置指示器的样式 UIActivityIndicatorViewStyleWhiteLarge UIActivityIndicatorViewStyleWhite  (默认样式) UIActivityIndicatorViewStyleGray 2.hidesWhenStopped 当停止动画的时候,是否隐藏...

发布 0 条评论

1.Locale 设置DatePicker的地区,即设置DatePicker显示的语言。 // 1.跟踪所有可用的地区,取出想要的地区 NSLog(@"%@", [NSLocale availableLocaleIdentifiers]); // 2. 设置日期选择控件的地区 [datePicker setLocale:[[NSLocal...

发布 0 条评论

1.numberOfComponents 返回UIPickerView当前的列数 NSInteger num = _pickerView.numberOfComponents; NSLog( @"%d", num); 2.- (NSInteger)numberOfRowsInComponent:(NSInteger)component; 返回component列中有多少行。 NSInteger ...

发布 0 条评论

1. numberOfPages 设置有多少页 默认为0 // 设置页数 [pageControl setNumberOfPages:kImageCount]; 2. currentPage 设置当前页 // 设置当前页 [pageControl setCurrentPage:0]; 3. pageIndicatorTintColor 设置页码指示器颜色 // ...

发布 0 条评论

1.segmentedControlStyle 设置segment的显示样式。 typedef NS_ENUM(NSInteger, UISegmentedControlStyle) { UISegmentedControlStylePlain, // large plain 系统默认平板样式 segmentedControl.segmentedControlStyle ...

发布 0 条评论

1. onTintColor 处于on时switch 的颜色 switchImage.onTintColor = [UIColor grayColor]; 2.tintColor 处于off时switch 的颜色 switchImage.tintColor = [UIColor greenColor]; 3.onImage 设置on 的图标 switchImage.onImage = [UIIma...

发布 0 条评论

1.minimumValue 当值可以改变时,滑块可以滑动到最小位置的值,默认为0.0 _slider.minimumValue = 10.0; 2.maximumValue 当值可以改变时,滑块可以滑动到最大位置的值,默认为1.0 _slider.maximumValue = 100.0; 3.continuous 如果设...

发布 0 条评论

UITableView内置了两种样式:UITableViewStylePlain,UITableViewStyleGrouped <UITableViewDataSource,UITableViewDelegate>里的方法: 1.UITableView处理步骤 #pragma mark 1.有多少组 - (NSInteger)numberOfSectionsInTable...

发布 0 条评论

1.contentOffset 默认CGPointZero,用来设置scrollView的滚动偏移量。 // 设置scrollView的滚动偏移量 scrollView.contentOffset = CGPointMake(0, 200); 2.contentSize 默认CGSizeZero,用来设置scrollView的滚动范围。 // 设置scro...

发布 0 条评论

1.text: 设置textView中文本 _textView.text = @"Now is the time for all good developers to come to serve their country.\n\nNow is the time for all good developers to come to serve their country."; // 设置它显示的内容 2....

发布 0 条评论

1.Image 设置图片,默认显示 UIImageView *_imageView = [[UIImageView alloc]init]; _imageView.image = [UIImage imageNamed:@"me.png"]; 2.highlightedImage 设置高亮状态下显示的图片 _imageView.highlightedImage = [UIImage ...

发布 0 条评论

0.enablesReturnKeyAutomatically 默认为No,如果设置为Yes,文本框中没有输入任何字符的话,右下角的返回按钮是disabled的。 1.borderStyle 设置边框样式,只有设置了才会显示边框样式 text.borderStyle = UITextBorderStyleRoundedRec...

发布 0 条评论