摘要:
UIPageControl 常见属性: • numberOfPages // 设置有多少页 默认为0 [pageControl setNumberOfPages:kImageCount]; • currentPage // 设置当前页 [pageControl setCurrentPage:0]; 阅读全文
摘要:
UIPikerView的属性1. numberOfComponents:返回UIPickerView当前的列数NSInteger num = _pickerView.numberOfComponents;NSLog( @"%d", num);2. - (NSInteger)numberOfRowsI... 阅读全文
摘要:
UISegment属性1.segmentedControlStyle设置segment的显示样式。typedef NS_ENUM(NSInteger, UISegmentedControlStyle) {UISegmentedControlStylePlain, // large plain 系统默... 阅读全文
摘要:
UISlide属性 • minimumValue: 当值可以改变时,滑块可以滑动到最小位置的值,默认为0.0_slider.minimumValue = 10.0; • maximumValue: 当值可以改变时,滑块可以滑动到最大位置的值,默认为1.0_slider.maximumValue = ... 阅读全文
摘要:
UISwitch属性1. onTintColor 处于on时switch的颜色
switchImage.onTintColor=[UIColorgrayColor];2.tintColor 处于off时switch的颜色switchImage.tintColor=[UIColorgreenColo... 阅读全文
摘要:
UITextView相关属性 • text:设置textView中文本_textView.text = @"Now is the time for all good developers to come to serve their country.\n\nNow is the time for a... 阅读全文
摘要:
UITextFidle相关属性• enablesReturnKeyAutomatically默认为No,如果设置为Yes,文本框中没有输入任何字符的话,右下角的返回按钮是disabled的。1.borderStyle设置边框样式,只有设置了才会显示边框样式 text.borderStyle = U... 阅读全文