摘要:
UIPageControl1. numberOfPages // 设置有多少页 默认为0 [pageControl setNumberOfPages:kImageCount];2. currentPage // 设置当前页[pageControl setCurrentPage:0];3. pageIndicatorTintColor // 设置页码指示器颜色[pageControl setPageIndicatorTintColor:[UIColor blackColor]];4. currentPageIndicatorTintColor // 设置当前页码指示器颜色[pageControl 阅读全文
摘要:
UISegment属性1.segmentedControlStyle设置segment的显示样式。typedef NS_ENUM(NSInteger, UISegmentedControlStyle) {UISegmentedControlStylePlain, // large plain 系统默认平板样式segmentedControl.segmentedControlStyle = UISegmentedControlStylePlain;UISegmentedControlStyleBordered, // large bordered 黑边样式segmentedControl.seg 阅读全文