自定義彈出TableView

創(chuàng)建一個自定義的View

.h文件

#import <UIKit/UIKit.h>
@class CoinsTypeModel;

typedef void(^SelectCionsTypeBlock)(CoinsTypeModel? *? model);
@interface SelectCionsTypeView : UIView

@property (nonatomic, copy) SelectCionsTypeBlock??????? selectCionsBlock;
@property (nonatomic, copy) NSMutableArray??????? *????? cionsList;

-(void)show;


.m文件

#import "SelectCionsTypeView.h"#import "AppDelegate.h"#import "CionsTypeModel.h"@interface SelectCionsTypeView(){


? ? UIView? ? ? ? *? ? ? ? _darkView;

? ? UIView? ? ? ? *? ? ? ? _bottomView;



}

@property (nonatomic, strong) UITableView? ? ? ? *? ? ? ? ? tableView;

@end

@implementation SelectCionsTypeView

- (instancetype)init

{

? ? self = [super init];

? ? if (self) {


? ? ? ? [self setup];

? ? }

? ? return self;

}

- (void)setup {


? ? AppDelegate *app = (AppDelegate *)[UIApplication sharedApplication].delegate;

? ? self.frame = CGRectMake(0, 0, SCREEN_WIDTH, SCREEN_HEIGHT);

? ? [app.window addSubview:self];


? ? UIView *darkView = [[UIView alloc]init];

? ? darkView.backgroundColor =RGBA(0, 0, 0, 0.5);

? ? darkView.alpha = 0;

? ? darkView.frame = CGRectMake(0, 0, SCREEN_WIDTH, SCREEN_HEIGHT);

? ? [self addSubview:darkView];

? ? _darkView = darkView;


? ? UITapGestureRecognizer *tap = [[UITapGestureRecognizer alloc]initWithTarget:self action:@selector(tapClick)];

? ? [_darkView addGestureRecognizer:tap];


? ? UIView *bottomView = [[UIView alloc]init];

? ? bottomView.backgroundColor = [UIColor whiteColor];

? ? bottomView.alpha = 1;

? ? bottomView.frame = CGRectMake(0, SCREEN_HEIGHT, SCREEN_WIDTH, SCREEN_HEIGHT/2);

? ? [self addSubview:bottomView];

? ? _bottomView = bottomView;



? ? UIButton *cancelBtn = [UIButton buttonWithType:UIButtonTypeCustom];

? ? cancelBtn.frame = CGRectMake(0, _bottomView.height-50*KScaleH, _bottomView.width, 50*KScaleH);

? ? [cancelBtn setTitle:@"取消" forState:UIControlStateNormal];

? ? [cancelBtn setTitleColor:LINE_COLOR forState:UIControlStateNormal];

? ? [cancelBtn handleControlEvent:UIControlEventTouchUpInside withBlock:^{


? ? ? ? [self dismiss];

? ? }];

? ? [_bottomView addSubview:cancelBtn];



? ? UIView *line = [[UIView alloc]initWithFrame:CGRectMake(0, cancelBtn.top-0.5, _bottomView.width, 0.5)];

? ? line.backgroundColor = LINE_COLOR;

? ? [_bottomView addSubview:line];


}

-(void)setCionsList:(NSMutableArray *)cionsList{

? ? _cionsList=cionsList;

? ? [self.tableView reloadData];

}

#pragma mark - public

- (void)show {


? ? [UIView animateWithDuration:0.2 animations:^{

? ? ? ? [self.superview endEditing:YES];


? ? } completion:^(BOOL finished) {


? ? ? ? [UIView animateWithDuration:0.3 animations:^{

? ? ? ? ? ? _darkView.alpha = 0.5;

? ? ? ? ? ? _bottomView.frame = CGRectMake(0, SCREEN_HEIGHT-SCREEN_HEIGHT/2, SCREEN_WIDTH, SCREEN_HEIGHT/2);

? ? ? ? }];

? ? }];



}

#pragma mark - private

- (void)dismiss {


? ? [UIView animateWithDuration:0.3 animations:^{


? ? ? ? _bottomView.frame = CGRectMake(0, SCREEN_HEIGHT, SCREEN_WIDTH, SCREEN_HEIGHT/2);

? ? ? ? _darkView.alpha = 0;

? ? } completion:^(BOOL finished) {


? ? ? ? [self removeFromSuperview];

? ? }];

}

- (void)tapClick {


? ? [self dismiss];

}

#pragma mark - delegate & datasource

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


? ? return self.cionsList.count;

}

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


? ? static NSString *cellID = @"tagCell";

? ? UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:cellID];

? ? if (!cell) {

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

? ? }


? ? CionsTypeModel? * model=self.cionsList[indexPath.row];

? ? cell.textLabel.text=model.cn_name;

? ? return cell;

}

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


? ? if (self.selectCionsBlock) {

? ? ? ? self.selectCionsBlock(self.cionsList[indexPath.row]);

? ? }

? ? [self dismiss];

}

- (UITableView *)tableView {


? ? if (!_tableView) {

? ? ? ? UITableView *table = [[UITableView alloc]initWithFrame:CGRectMake(0, 0, _bottomView.width, _bottomView.height-50-0.5) style:UITableViewStylePlain];

? ? ? ? table.delegate = self;

? ? ? ? table.dataSource = self;

? ? ? ? [_bottomView addSubview:table];

? ? ? ? _tableView = table;

? ? }

? ? return _tableView;

}

@end

在ViewController里面調(diào)用

SelectCionsTypeView * typeView=[[SelectCionsTypeView alloc]init];

? ? ? ? [typeView show];

? ? ? ? typeView.cionsList=self.dataList;

? ? ? ? typeView.selectCionsBlock = ^(CoinsTypeModel *model) {

? ? ? ? ? ? self.coinsTypeModel=model;

? ? ? ? ? ? _tagIndex = 0;

? ? ? ? ? ? self.cionsTypeTF.text=self.coinsTypeModel.cn_name

? ? ? ? };

想要自定義彈出視圖的小伙伴們可以參考一下拟糕,非常簡單判呕,點擊彈出自定義的tableView,可以自定義Model進行賦值送滞,

?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末侠草,一起剝皮案震驚了整個濱河市,隨后出現(xiàn)的幾起案子犁嗅,更是在濱河造成了極大的恐慌边涕,老刑警劉巖,帶你破解...
    沈念sama閱讀 211,561評論 6 492
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件褂微,死亡現(xiàn)場離奇詭異功蜓,居然都是意外死亡,警方通過查閱死者的電腦和手機宠蚂,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,218評論 3 385
  • 文/潘曉璐 我一進店門式撼,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人求厕,你說我怎么就攤上這事著隆。” “怎么了呀癣?”我有些...
    開封第一講書人閱讀 157,162評論 0 348
  • 文/不壞的土叔 我叫張陵美浦,是天一觀的道長。 經(jīng)常有香客問我项栏,道長浦辨,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 56,470評論 1 283
  • 正文 為了忘掉前任忘嫉,我火速辦了婚禮荤牍,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘庆冕。我一直安慰自己康吵,他們只是感情好,可當我...
    茶點故事閱讀 65,550評論 6 385
  • 文/花漫 我一把揭開白布访递。 她就那樣靜靜地躺著晦嵌,像睡著了一般。 火紅的嫁衣襯著肌膚如雪拷姿。 梳的紋絲不亂的頭發(fā)上惭载,一...
    開封第一講書人閱讀 49,806評論 1 290
  • 那天,我揣著相機與錄音响巢,去河邊找鬼描滔。 笑死,一個胖子當著我的面吹牛踪古,可吹牛的內(nèi)容都是我干的含长。 我是一名探鬼主播券腔,決...
    沈念sama閱讀 38,951評論 3 407
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼拘泞!你這毒婦竟也來了纷纫?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 37,712評論 0 266
  • 序言:老撾萬榮一對情侶失蹤陪腌,失蹤者是張志新(化名)和其女友劉穎辱魁,沒想到半個月后,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體诗鸭,經(jīng)...
    沈念sama閱讀 44,166評論 1 303
  • 正文 獨居荒郊野嶺守林人離奇死亡染簇,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,510評論 2 327
  • 正文 我和宋清朗相戀三年,在試婚紗的時候發(fā)現(xiàn)自己被綠了只泼。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片剖笙。...
    茶點故事閱讀 38,643評論 1 340
  • 序言:一個原本活蹦亂跳的男人離奇死亡,死狀恐怖请唱,靈堂內(nèi)的尸體忽然破棺而出弥咪,到底是詐尸還是另有隱情,我是刑警寧澤十绑,帶...
    沈念sama閱讀 34,306評論 4 330
  • 正文 年R本政府宣布聚至,位于F島的核電站,受9級特大地震影響本橙,放射性物質(zhì)發(fā)生泄漏扳躬。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點故事閱讀 39,930評論 3 313
  • 文/蒙蒙 一甚亭、第九天 我趴在偏房一處隱蔽的房頂上張望贷币。 院中可真熱鬧,春花似錦亏狰、人聲如沸役纹。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,745評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽促脉。三九已至,卻和暖如春策州,著一層夾襖步出監(jiān)牢的瞬間瘸味,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 31,983評論 1 266
  • 我被黑心中介騙來泰國打工够挂, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留旁仿,地道東北人。 一個月前我還...
    沈念sama閱讀 46,351評論 2 360
  • 正文 我出身青樓孽糖,卻偏偏與公主長得像丁逝,于是被迫代替她去往敵國和親汁胆。 傳聞我的和親對象是個殘疾皇子梭姓,可洞房花燭夜當晚...
    茶點故事閱讀 43,509評論 2 348

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

  • 概述在iOS開發(fā)中UITableView可以說是使用最廣泛的控件霜幼,我們平時使用的軟件中到處都可以看到它的影子,類似...
    liudhkk閱讀 9,007評論 3 38
  • *7月8日上午 N:Block :跟一個函數(shù)塊差不多誉尖,會對里面所有的內(nèi)容的引用計數(shù)+1罪既,想要解決就用__block...
    炙冰閱讀 2,477評論 1 14
  • AppDelegate.m #import "AppDelegate.h" #import "ViewContro...
    哈嘍Mm閱讀 328評論 0 0
  • 今天,進入愛不完親子教育環(huán)境第28天铡恕!我在整理錦明老師的錄音筆記心得時琢感,看到一句話:當你進入環(huán)境,你已經(jīng)接受了改變...
    漁姑娘mama_碎生活痕跡閱讀 235評論 0 2
  • 余生 “和了探熔!” 清脆的喊聲透過煙霧繚繞驹针、人聲嘈雜的麻將館,不用看都知道是淺欣诀艰,這一帶賭場有名的美人柬甥。極度彎...
    雨蕭_7e68閱讀 270評論 0 0