Objective-C實現自訂的半透明導航_IOS

來源:互聯網
上載者:User

本文執行個體為大家分享了Objective-C半透明導航的具體實現代碼,供大家參考,具體內容如下

#define kScreenWidth [[UIScreen mainScreen] bounds].size.width#define kScreenHeight [[UIScreen mainScreen] bounds].size.height #import "RSwenNav.h" @implementation RSwenNav{ UIVisualEffectView *effectview;}-(instancetype)initWithFrame:(CGRect)frame{ self=[super initWithFrame:frame]; if (self) {  UIBlurEffect *blur = [UIBlurEffect effectWithStyle:UIBlurEffectStyleLight]; effectview = [[UIVisualEffectView alloc] initWithEffect:blur]; effectview.frame=frame; [self addSubview:effectview]; [self addSubviews]; } return self;} //添加導航子視圖-(void)addSubviews{ [self addSubview:self.backBtn]; [self addSubview:self.titleLabel]; [self addSubview:self.rightBtn]; }-(UIButton *)backBtn{ UIButton * btn=[UIButton buttonWithType:UIButtonTypeCustom]; btn.frame=CGRectMake(20, 20, 60, 44); [btn setTitle:@"返回" forState:UIControlStateNormal]; [btn addTarget:self action:@selector(RSwenNavback) forControlEvents:UIControlEventTouchUpInside]; return btn;} -(UILabel *)titleLabel{ UILabel * lable=[[UILabel alloc]init]; lable.font=[UIFont systemFontOfSize:17]; lable.textAlignment=NSTextAlignmentCenter; lable.frame=CGRectMake(100, 20, kScreenWidth-200, 44); lable.text=@"我的首頁"; return lable;} -(UIButton *)rightBtn{ UIButton * btn=[UIButton buttonWithType:UIButtonTypeCustom]; btn.frame=CGRectMake([UIScreen mainScreen].bounds.size.width-100, 20, 80, 44); [btn setTitle:@"儲存" forState:UIControlStateNormal]; [btn addTarget:self action:@selector(rightBtnClicked) forControlEvents:UIControlEventTouchUpInside]; return btn;} #pragma 事件處理部分 //返回上個介面-(void)RSwenNavback{ //擷取UIView的上層UIViewController id object = [self nextResponder]; while (![object isKindOfClass:[UIViewController class]] &&    object != nil) {   object = [object nextResponder];   } UIViewController *uc=(UIViewController*)object;  [uc.navigationController popViewControllerAnimated:YES];} //右側按鈕被點擊-(void)rightBtnClicked{ if ([_delegate respondsToSelector:@selector(RSwenNavrightBtnClicked)]) { [_delegate RSwenNavrightBtnClicked]; }} @end

以上就是本文的全部內容,希望對大家的學習有所協助。

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.