自建分段控制器 實現(xiàn)效果

在此之前在 AppDelegate.m 中設(shè)置導航才可以完成效果

```

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {

//添加導航控制器

self.window.rootViewController = [[UINavigationController alloc]initWithRootViewController:[ViewController new]];

return YES;

}

```

// 這個我們的ViewController 在這里實現(xiàn)主要功能

#import "ViewController.h"

@interface ViewController ()<UITableViewDelegate,UITableViewDataSource>

{

UITableView * table;

}

@end

@implementation ViewController

- (void)viewDidLoad {

[super viewDidLoad];

self.title = @"小優(yōu)";

self.view.backgroundColor = [UIColor grayColor];

NSArray *array = [NSArray arrayWithObjects:@"唐裝",@"男裝",@"php",@"金溪",@"java",@"e語言", nil];

//初始化UISegmentedControl

UISegmentedControl *segment = [[UISegmentedControl alloc]initWithItems:array];

segment.tintColor = [UIColor whiteColor];

//設(shè)置frame

segment.frame = CGRectMake(0, 65, 340, 30);

//添加到視圖

[self.view addSubview:segment];

UIButton * but = [[UIButton alloc]initWithFrame:CGRectMake(340, 65, 60, 30)];

[but setTitle:@"+" forState:UIControlStateNormal];

but.backgroundColor = [UIColor whiteColor];

[but addTarget:self action:@selector(dianji:) forControlEvents:UIControlEventTouchUpInside];

[self.view addSubview:but];

}

-(void)dianji:(UIButton *)btn

{

UIView * vieww = [[UIView alloc]initWithFrame:CGRectMake(260, 100, 60, 150)];

vieww.backgroundColor = [UIColor whiteColor];

[self.view addSubview:vieww];

table =[[UITableView alloc]initWithFrame:CGRectMake(0, 0, self.view.frame.size.width, 150) style:UITableViewStyleGrouped];

table.delegate = self;

table.dataSource = self;

[vieww addSubview:table];

}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section;

{

return 3;

}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath;

{

static NSString * cellID = @"cell";

UITableViewCell * cell =[table dequeueReusableCellWithIdentifier:cellID];

if (!cell)

{

cell =[[UITableViewCell alloc]initWithStyle:UITableViewCellStyleDefault reuseIdentifier:cellID];

}

if (indexPath.row == 0)

{

cell.textLabel.text = @"添加";

}

if (indexPath.row == 1)

{

cell.textLabel.text = @"確認";

}

if (indexPath.row == 2)

{

cell.textLabel.text = @"關(guān)閉";

}

return cell;

}

-(CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section

{

return 2;

}

-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath

{

if (indexPath.row == 0)

{

UIAlertController *alert = [UIAlertController alertControllerWithTitle:@"確認添加" message:@"操作已完成" preferredStyle:? UIAlertControllerStyleAlert];

[alert addAction:[UIAlertAction actionWithTitle:@"確定" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {

//點擊按鈕的響應(yīng)事件;

}]];

//彈出提示框;

[self presentViewController:alert animated:true completion:nil];

}

}

還請書友們 給個評價 讓小編知道自己的不足~~謝過啦

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個濱河市谚中,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌珍昨,老刑警劉巖,帶你破解...
    沈念sama閱讀 206,126評論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場離奇詭異监憎,居然都是意外死亡,警方通過查閱死者的電腦和手機婶溯,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,254評論 2 382
  • 文/潘曉璐 我一進店門鲸阔,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人迄委,你說我怎么就攤上這事隶债。” “怎么了跑筝?”我有些...
    開封第一講書人閱讀 152,445評論 0 341
  • 文/不壞的土叔 我叫張陵,是天一觀的道長瞒滴。 經(jīng)常有香客問我曲梗,道長,這世上最難降的妖魔是什么妓忍? 我笑而不...
    開封第一講書人閱讀 55,185評論 1 278
  • 正文 為了忘掉前任虏两,我火速辦了婚禮,結(jié)果婚禮上世剖,老公的妹妹穿的比我還像新娘定罢。我一直安慰自己,他們只是感情好旁瘫,可當我...
    茶點故事閱讀 64,178評論 5 371
  • 文/花漫 我一把揭開白布祖凫。 她就那樣靜靜地躺著,像睡著了一般酬凳。 火紅的嫁衣襯著肌膚如雪惠况。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 48,970評論 1 284
  • 那天宁仔,我揣著相機與錄音稠屠,去河邊找鬼。 笑死,一個胖子當著我的面吹牛权埠,可吹牛的內(nèi)容都是我干的榨了。 我是一名探鬼主播,決...
    沈念sama閱讀 38,276評論 3 399
  • 文/蒼蘭香墨 我猛地睜開眼攘蔽,長吁一口氣:“原來是場噩夢啊……” “哼龙屉!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起秩彤,我...
    開封第一講書人閱讀 36,927評論 0 259
  • 序言:老撾萬榮一對情侶失蹤叔扼,失蹤者是張志新(化名)和其女友劉穎,沒想到半個月后漫雷,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體瓜富,經(jīng)...
    沈念sama閱讀 43,400評論 1 300
  • 正文 獨居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 35,883評論 2 323
  • 正文 我和宋清朗相戀三年降盹,在試婚紗的時候發(fā)現(xiàn)自己被綠了与柑。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點故事閱讀 37,997評論 1 333
  • 序言:一個原本活蹦亂跳的男人離奇死亡蓄坏,死狀恐怖价捧,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情涡戳,我是刑警寧澤结蟋,帶...
    沈念sama閱讀 33,646評論 4 322
  • 正文 年R本政府宣布,位于F島的核電站渔彰,受9級特大地震影響嵌屎,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜恍涂,卻給世界環(huán)境...
    茶點故事閱讀 39,213評論 3 307
  • 文/蒙蒙 一宝惰、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧再沧,春花似錦尼夺、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,204評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至什燕,卻和暖如春粘勒,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背屎即。 一陣腳步聲響...
    開封第一講書人閱讀 31,423評論 1 260
  • 我被黑心中介騙來泰國打工庙睡, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留事富,地道東北人。 一個月前我還...
    沈念sama閱讀 45,423評論 2 352
  • 正文 我出身青樓乘陪,卻偏偏與公主長得像统台,于是被迫代替她去往敵國和親。 傳聞我的和親對象是個殘疾皇子啡邑,可洞房花燭夜當晚...
    茶點故事閱讀 42,722評論 2 345

推薦閱讀更多精彩內(nèi)容