标签 uisegmentcontrol 下的文章

Objective-C Learning Notes - UISegmentControl

按钮栏

    可以结合使用索引和实例方法 titleForSegmentAtIndex 来获取每个分段的标题.要获取分段控件中当前选定的标题,可以使用以下代码段:

    [mySegment titleForSegmentAtIndex:mySegment.selectSegmentIndex];

动态实现:

#import <UIKit/UIKit.h>
@interface ViewController : UIViewController
@property (strong,nonatomic)UISegmentedControl *mySegmentControl;
@end

- 阅读剩余部分 -