抽屜式圖


//抽屜式圖導(dǎo)入第三方LeftSlideViewController

// AppDelegate.h


//抽屜式圖頭文件

#import "LeftSlideViewController.h"


//定義屬性

@property (strong, nonatomic) LeftSlideViewController *LeftSlideVC;

@property (strong, nonatomic) UINavigationController *mainNavigationController;



// AppDelegate.m

//導(dǎo)入頭文件

#import "MainViewController.h"

#import "LeftSortsViewController.h"


self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];

self.window.backgroundColor = [UIColor whiteColor];? //設(shè)置通用背景顏色

[self.window makeKeyAndVisible];

MainViewController *mainVC = [[MainViewController alloc] init];

self.mainNavigationController = [[UINavigationController alloc] initWithRootViewController:mainVC];

LeftSortsViewController *leftVC = [[LeftSortsViewController alloc] init];

self.LeftSlideVC = [[LeftSlideViewController alloc] initWithLeftView:leftVC andMainView:self.mainNavigationController];

self.window.rootViewController = self.LeftSlideVC;

[[UINavigationBar appearance] setBarTintColor:[UIColor purpleColor]];



// LeftSortsViewController.h

//導(dǎo)入頭文件

@property (nonatomic,strong) UITableView *tableview;


// LeftSortsViewController.m

//導(dǎo)入頭文件#import "AppDelegate.h"

<UITableViewDelegate,UITableViewDataSource>

//==============================================括號(hào)內(nèi)============

UIImageView *imageview = [[UIImageView alloc] initWithFrame:self.view.bounds];

//背景圖片效果

imageview.image = [UIImage imageNamed:@"elsa.png"];

[self.view addSubview:imageview];

UITableView *tableview = [[UITableView alloc] init];

self.tableview = tableview;

tableview.frame = self.view.bounds;

tableview.dataSource = self;

tableview.delegate? = self;

tableview.separatorStyle = UITableViewCellSeparatorStyleNone;

[self.view addSubview:tableview];

UIImageView *imageView1 = [[UIImageView alloc]initWithFrame:CGRectMake(100, 60, 100, 100)];

//只需要設(shè)置layer層的兩個(gè)屬性

[imageView1 setImage:[UIImage imageNamed:@"1"]];

//設(shè)置圓角

imageView1.layer.cornerRadius = imageView1.frame.size.width / 2;

//將多余的部分切掉

imageView1.layer.masksToBounds = YES;

[self.tableview addSubview:imageView1];

//=================================括號(hào)外=========================

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

{

return 7;

}

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

{

static NSString *Identifier = @"Identifier";

UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:Identifier];

if (cell == nil) {

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

}

cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;

cell.textLabel.font = [UIFont systemFontOfSize:20.0f];

cell.backgroundColor = [UIColor clearColor];

//表格字體顏色

cell.textLabel.textColor = [UIColor blackColor];

if (indexPath.row == 0) {

cell.textLabel.text = @"開(kāi)通會(huì)員";

} else if (indexPath.row == 1) {

cell.textLabel.text = @"QQ錢(qián)包";

} else if (indexPath.row == 2) {

cell.textLabel.text = @"網(wǎng)上營(yíng)業(yè)廳";

} else if (indexPath.row == 3) {

cell.textLabel.text = @"個(gè)性裝扮";

} else if (indexPath.row == 4) {

cell.textLabel.text = @"我的收藏";

} else if (indexPath.row == 5) {

cell.textLabel.text = @"我的相冊(cè)";

} else if (indexPath.row == 6) {

cell.textLabel.text = @"我的文件";

}

return cell;

}

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

{

return 180;

}

- (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section

{

UIView *view = [[UIView alloc] initWithFrame:CGRectMake(0, 0, self.tableview.bounds.size.width, 180)];

view.backgroundColor = [UIColor clearColor];

return view;

}


// MainViewController.h

// MainViewController.m

//導(dǎo)入頭文件

#import "AppDelegate.h"

#define vBackBarButtonItemName? @"backArrow.png"? ? //導(dǎo)航條返回默認(rèn)圖片名

//=====================================括號(hào)內(nèi)==========================

self.title = @"主界面";

self.view.backgroundColor = [UIColor whiteColor];

UIButton *menuBtn = [UIButton buttonWithType:UIButtonTypeCustom];

menuBtn.frame = CGRectMake(0, 0, 20, 18);

[menuBtn setBackgroundImage:[UIImage imageNamed:@"1.png"] forState:UIControlStateNormal];

[menuBtn addTarget:self action:@selector(openOrCloseLeftList) forControlEvents:UIControlEventTouchUpInside];

self.navigationItem.leftBarButtonItem = [[UIBarButtonItem alloc] initWithCustomView:menuBtn];

//======================================括號(hào)外==============================

- (void) openOrCloseLeftList

{

AppDelegate *tempAppDelegate = (AppDelegate *)[[UIApplication sharedApplication] delegate];

if (tempAppDelegate.LeftSlideVC.closed)

{

[tempAppDelegate.LeftSlideVC openLeftView];

}

else

{

[tempAppDelegate.LeftSlideVC closeLeftView];

}

}

- (void)viewWillDisappear:(BOOL)animated

{

[super viewWillDisappear:animated];

NSLog(@"viewWillDisappear");

AppDelegate *tempAppDelegate = (AppDelegate *)[[UIApplication sharedApplication] delegate];

[tempAppDelegate.LeftSlideVC setPanEnabled:NO];

}

- (void)viewWillAppear:(BOOL)animated

{

[super viewWillAppear:animated];

NSLog(@"viewWillAppear");

AppDelegate *tempAppDelegate = (AppDelegate *)[[UIApplication sharedApplication] delegate];

[tempAppDelegate.LeftSlideVC setPanEnabled:YES];

}

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末铃芦,一起剝皮案震驚了整個(gè)濱河市,隨后出現(xiàn)的幾起案子襟雷,更是在濱河造成了極大的恐慌刃滓,老刑警劉巖,帶你破解...
    沈念sama閱讀 212,884評(píng)論 6 492
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件耸弄,死亡現(xiàn)場(chǎng)離奇詭異咧虎,居然都是意外死亡,警方通過(guò)查閱死者的電腦和手機(jī)计呈,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,755評(píng)論 3 385
  • 文/潘曉璐 我一進(jìn)店門(mén)砰诵,熙熙樓的掌柜王于貴愁眉苦臉地迎上來(lái),“玉大人捌显,你說(shuō)我怎么就攤上這事茁彭。” “怎么了扶歪?”我有些...
    開(kāi)封第一講書(shū)人閱讀 158,369評(píng)論 0 348
  • 文/不壞的土叔 我叫張陵理肺,是天一觀的道長(zhǎng)。 經(jīng)常有香客問(wèn)我善镰,道長(zhǎng)妹萨,這世上最難降的妖魔是什么? 我笑而不...
    開(kāi)封第一講書(shū)人閱讀 56,799評(píng)論 1 285
  • 正文 為了忘掉前任炫欺,我火速辦了婚禮乎完,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘竣稽。我一直安慰自己囱怕,他們只是感情好霍弹,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,910評(píng)論 6 386
  • 文/花漫 我一把揭開(kāi)白布。 她就那樣靜靜地躺著娃弓,像睡著了一般典格。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上台丛,一...
    開(kāi)封第一講書(shū)人閱讀 50,096評(píng)論 1 291
  • 那天耍缴,我揣著相機(jī)與錄音,去河邊找鬼挽霉。 笑死防嗡,一個(gè)胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的侠坎。 我是一名探鬼主播蚁趁,決...
    沈念sama閱讀 39,159評(píng)論 3 411
  • 文/蒼蘭香墨 我猛地睜開(kāi)眼,長(zhǎng)吁一口氣:“原來(lái)是場(chǎng)噩夢(mèng)啊……” “哼实胸!你這毒婦竟也來(lái)了他嫡?” 一聲冷哼從身側(cè)響起,我...
    開(kāi)封第一講書(shū)人閱讀 37,917評(píng)論 0 268
  • 序言:老撾萬(wàn)榮一對(duì)情侶失蹤庐完,失蹤者是張志新(化名)和其女友劉穎钢属,沒(méi)想到半個(gè)月后,有當(dāng)?shù)厝嗽跇?shù)林里發(fā)現(xiàn)了一具尸體门躯,經(jīng)...
    沈念sama閱讀 44,360評(píng)論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡淆党,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,673評(píng)論 2 327
  • 正文 我和宋清朗相戀三年,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了讶凉。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片染乌。...
    茶點(diǎn)故事閱讀 38,814評(píng)論 1 341
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡,死狀恐怖缀遍,靈堂內(nèi)的尸體忽然破棺而出慕匠,到底是詐尸還是另有隱情饱须,我是刑警寧澤域醇,帶...
    沈念sama閱讀 34,509評(píng)論 4 334
  • 正文 年R本政府宣布,位于F島的核電站蓉媳,受9級(jí)特大地震影響譬挚,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜酪呻,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 40,156評(píng)論 3 317
  • 文/蒙蒙 一减宣、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧玩荠,春花似錦漆腌、人聲如沸贼邓。這莊子的主人今日做“春日...
    開(kāi)封第一講書(shū)人閱讀 30,882評(píng)論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)塑径。三九已至,卻和暖如春填具,著一層夾襖步出監(jiān)牢的瞬間统舀,已是汗流浹背。 一陣腳步聲響...
    開(kāi)封第一講書(shū)人閱讀 32,123評(píng)論 1 267
  • 我被黑心中介騙來(lái)泰國(guó)打工劳景, 沒(méi)想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留誉简,地道東北人。 一個(gè)月前我還...
    沈念sama閱讀 46,641評(píng)論 2 362
  • 正文 我出身青樓盟广,卻偏偏與公主長(zhǎng)得像闷串,于是被迫代替她去往敵國(guó)和親。 傳聞我的和親對(duì)象是個(gè)殘疾皇子筋量,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,728評(píng)論 2 351

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

  • 概述在iOS開(kāi)發(fā)中UITableView可以說(shuō)是使用最廣泛的控件窿克,我們平時(shí)使用的軟件中到處都可以看到它的影子,類(lèi)似...
    liudhkk閱讀 9,014評(píng)論 3 38
  • *7月8日上午 N:Block :跟一個(gè)函數(shù)塊差不多毛甲,會(huì)對(duì)里面所有的內(nèi)容的引用計(jì)數(shù)+1年叮,想要解決就用__block...
    炙冰閱讀 2,477評(píng)論 1 14
  • 版權(quán)聲明:未經(jīng)本人允許,禁止轉(zhuǎn)載. 1. TableView初始化 1.UITableView有兩種風(fēng)格:UITa...
    蕭雪痕閱讀 2,908評(píng)論 2 10
  • 前言 最近忙完項(xiàng)目比較閑,想寫(xiě)一篇博客來(lái)分享一些自學(xué)iOS的心得體會(huì)玻募,希望對(duì)迷茫的你有所幫助只损。博主非科班出身,一些...
    GitHubPorter閱讀 1,422評(píng)論 9 5
  • 的政策出臺(tái)以后七咧,對(duì)于大學(xué)生創(chuàng)業(yè)跃惫,在每個(gè)高校中進(jìn)行的如火如荼的。身邊就有好多鮮活的例子艾栋,室友兩人爆存,進(jìn)過(guò)一年的學(xué)習(xí)考察...
    火華社的火華閱讀 219評(píng)論 0 1