分段控件UISegmentedControl
最近刚刚接触到这个东西,感觉好神奇一样,就试着用了一下,哈哈,果然还不错:
代码如下,很简单的例子,不寒有任何的杂质
NSArray *item = [[NSArray alloc] initWithObjects:@"男",@"女", nil];
UISegmentedControl *sexSegment = [[UISegmentedControl alloc] initWithItems:item];
sexSegment.segmentedControlStyle = UISegmentedControlStyleBar;
[sexSegment setSegmentedControlStyle:UISegmentedControlStylePlain];
[sexSegment setFrame:CGRectMake(segmentX, segmentY, segmentWidth, segmentHeight)];
[sexSegment addTarget:self
action:@selector(selectSex:)
forControlEvents:UIControlEventValueChanged];
[_contentView addSubview:sexSegment];
版权声明
由 davidzhang创作并维护的 Gowhich博客采用创作共用保留署名-非商业-禁止演绎4.0国际许可证。
本文首发于 博客( https://www.gowhich.com ),版权所有,侵权必究。
本文永久链接: https://www.gowhich.com/blog/235
版权声明
由 davidzhang创作并维护的 Gowhich博客采用创作共用保留署名-非商业-禁止演绎4.0国际许可证。
本文首发于 Gowhich博客( https://www.gowhich.com ),版权所有,侵权必究。
本文永久链接: https://www.gowhich.com/blog/235