The effect is as follows:
ViewController.h
1 #import <UIKit/UIKit.h>23@interface viewcontroller: Uiviewcontroller4@end
Viewcontroller.m
1 #import "ViewController.h"2 3 @interfaceViewcontroller ()4- (void) Layoutui;5 @end6 7 @implementationViewcontroller8 9- (void) Viewdidload {Ten [Super Viewdidload]; One A [self layoutui]; - } - the- (void) didreceivememorywarning { - [Super didreceivememorywarning]; - //Dispose of any resources the can be recreated. - } + -- (void) Layoutui { +Uisegmentedcontrol *smtccontentoffset = [[Uisegmentedcontrol alloc] initwithitems:@[@" First",@"Second",@"Third"]]; ASmtccontentoffset.tintcolor = [Uicolor colorwithred:1.000Green0.434Blue0.469Alpha1.000]; atSmtccontentoffset.selectedsegmentindex =2; -Smtccontentoffset.momentary =YES; -Smtccontentoffset.center =Self.view.center; - - //to modify the location of a segment card title -[Smtccontentoffset Setcontentoffset:cgsizemake (0, -5) Forsegmentatindex:0]; in[Smtccontentoffset Setcontentoffset:cgsizemake (0,5) Forsegmentatindex:2]; - [Self.view Addsubview:smtccontentoffset]; to } + - @end
076 Modifying the location of the segment card title