国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 系統 > iOS > 正文

IOS實現聊天界面底部菜單欄效果

2020-07-26 02:42:16
字體:
來源:轉載
供稿:網友

-本安全出自個人小項目仿boss直聘當中的聊天信息界面:

實現的思路主要是:約束動畫。

實現較簡單,這里直接上代碼:

。h文件:

#import <UIKit/UIKit.h> @protocol ShowMoreOptionListener <NSObject> @optional -(void) onChangListener; @end @class ScrollView; /**  底部菜單視圖  */ @interface BottomMenuView : UIView @property(nonatomic,strong) UIView* showPartView;    //總是可見部分 @property(nonatomic,strong) UIView* hiddenPartView;   //底部隱藏部分,需要點擊顯示部分才能顯示出來 @property(nonatomic,weak) id<ShowMoreOptionListener> delegate; //下面更多操作菜單的的狀態代理器 @property(nonatomic,strong) ScrollView* emojiPanel; -(void) buildOptionMenu; @end 

.m文件:

#import "BottomMenuView.h" #import "Masonry.h" #import "QuickWordsView.h" #import "ScrollView.h" #import "Constants.h" static const int QuickChat = 31; static const int Emoji = 32; static const int AddType = 33; static const int EmojiPanel = 34; static const int QuickChatPanel = 34; @implementation BottomMenuView -(instancetype) initWithFrame:(CGRect)frame{   if(self = [super initWithFrame:frame]){}   return self; } -(void) buildOptionMenu{   self.showPartView = [[UIView alloc] init];   //self.showPartView.backgroundColor = [UIColor greenColor];   [self addSubview:self.showPartView];   //添加showPartView約束   [self.showPartView mas_makeConstraints:^(MASConstraintMaker *make) {     make.right.equalTo(self).offset(0);     make.top.equalTo(self);     make.left.equalTo(self);     make.height.mas_equalTo(40);   }];   UIButton* showQuickWordsBtn = [[UIButton alloc] init];   [showQuickWordsBtn setImage:[UIImage imageNamed:@"ic_chat_input_method"] forState:UIControlStateNormal];   showQuickWordsBtn.imageView.contentMode = UIViewContentModeScaleAspectFit;   showQuickWordsBtn.contentHorizontalAlignment = UIControlContentHorizontalAlignmentLeft;   showQuickWordsBtn.imageEdgeInsets = UIEdgeInsetsMake(0, -10, 0, 0);   showQuickWordsBtn.tag = QuickChat;   [showQuickWordsBtn addTarget:self action:@selector(onClick:) forControlEvents:UIControlEventTouchUpInside];   [self.showPartView addSubview:showQuickWordsBtn];   [showQuickWordsBtn mas_makeConstraints:^(MASConstraintMaker *make) {     make.leading.equalTo(self.showPartView).offset(0);     make.top.equalTo(self.showPartView);     make.size.mas_equalTo(CGSizeMake(90, 40));   }];   //中間編輯框   UITextView* editText = [[UITextView alloc] init];   [self.showPartView addSubview:editText];   [editText mas_makeConstraints:^(MASConstraintMaker *make) {     make.leading.equalTo(showQuickWordsBtn.mas_trailing).offset(-10);     make.centerY.equalTo(showQuickWordsBtn.mas_centerY);     make.height.mas_equalTo(37);     make.trailing.equalTo(self.showPartView).offset(-100);   }];   //設置編輯框底部線   UIView* editTextbottomLine = [[UIView alloc] init];   editTextbottomLine.backgroundColor = [UIColor blackColor];   [self.showPartView addSubview:editTextbottomLine];   [editTextbottomLine mas_makeConstraints:^(MASConstraintMaker *make) {     make.leading.equalTo(showQuickWordsBtn.mas_trailing).offset(-10);     make.top.equalTo(showQuickWordsBtn.mas_bottom);     make.height.mas_equalTo(1.0);     make.trailing.equalTo(self.showPartView).offset(-100);   }];   //創建表情   UIButton* emojiBtn = [[UIButton alloc] init];   [emojiBtn setImage:[UIImage imageNamed:@"ic_emoji.png"] forState:UIControlStateNormal];   emojiBtn.imageView.contentMode = UIViewContentModeScaleAspectFit;   emojiBtn.tag = Emoji;   [emojiBtn addTarget:self action:@selector(onClick:) forControlEvents:UIControlEventTouchUpInside];   [self addSubview:emojiBtn];   [emojiBtn mas_makeConstraints:^(MASConstraintMaker *make) {     make.leading.equalTo(editText.mas_trailing).offset(5);     make.centerY.equalTo(self.showPartView.mas_centerY);     make.size.mas_equalTo(CGSizeMake(38, 38));   }];   //創建+btn   UIButton* addBtn = [[UIButton alloc] init];   [addBtn setImage:[UIImage imageNamed:@"ic_gallery_add.png"] forState:UIControlStateNormal];   addBtn.imageView.contentMode = UIViewContentModeScaleAspectFit;   addBtn.tag = AddType;   [addBtn addTarget:self action:@selector(onClick:) forControlEvents:UIControlEventTouchUpInside];   [self addSubview:addBtn];   [addBtn mas_makeConstraints:^(MASConstraintMaker *make) {     make.right.equalTo(self.showPartView).offset(-10);     make.centerY.equalTo(self.showPartView.mas_centerY);     make.size.mas_equalTo(CGSizeMake(38, 38));   }];   //設置永久顯示底部線   UIView* bottomLine = [[UIView alloc] init];   bottomLine.backgroundColor = [UIColor blackColor];   [self.showPartView addSubview:bottomLine];   [bottomLine mas_makeConstraints:^(MASConstraintMaker *make) {     make.leading.equalTo(showQuickWordsBtn);     make.top.equalTo(self.showPartView.mas_bottom).offset(5);     make.height.mas_equalTo(1.0);     make.trailing.equalTo(self.showPartView.mas_trailing);   }]; //  //下面開始處理隱藏部分,默認顯示快捷消息 //  QuickWordsView* quickWordsView = [[QuickWordsView alloc] init]; //  quickWordsView.separatorInset = UIEdgeInsetsMake(0,10,0,10); //top left right down //  quickWordsView.tableFooterView = [[UIView alloc] initWithFrame:CGRectZero]; //刪除底部多余行,及分割線 //  quickWordsView.tag = 100; //  [self addSubview:quickWordsView]; //  [quickWordsView mas_makeConstraints:^(MASConstraintMaker *make) { //    make.leading.equalTo(self); //    make.trailing.equalTo(self.mas_trailing); //    make.top.equalTo(self.mas_top).offset(47); //    make.height.mas_equalTo(210); //     //  }];   [self buildQuickChat]; } -(void)onClick:(UIButton*) button{   switch(button.tag){     case QuickChat:{       if(self.delegate){         [self.delegate onChangListener];       }     }break;     case Emoji:{     }break;     case AddType:{     }break;   } } -(void) buildQuickChat{   //下面開始處理隱藏部分,默認顯示快捷消息   QuickWordsView* quickWordsView = [[QuickWordsView alloc] init];   quickWordsView.separatorInset = UIEdgeInsetsMake(0,10,0,10); //top left right down   quickWordsView.tableFooterView = [[UIView alloc] initWithFrame:CGRectZero]; //刪除底部多余行,及分割線   quickWordsView.tag = QuickChatPanel;   [self addSubview:quickWordsView];   [quickWordsView mas_makeConstraints:^(MASConstraintMaker *make) {     make.leading.equalTo(self);     make.trailing.equalTo(self.mas_trailing);     make.top.equalTo(self.mas_top).offset(47);     make.height.mas_equalTo(210);   }]; } //-------------------kvo 實現觀察主題 end---------------- @end 

測試代碼:

-(void) testBottomMenu{    self.menu = [[BottomMenuView alloc] init];   self.menu.translatesAutoresizingMaskIntoConstraints = NO;   //self.menu.backgroundColor = [UIColor redColor];   [self.menu buildOptionMenu];   self.menu.delegate = self;   [self.view addSubview:self.menu];   //使用約束來達到效果,下面開始添加約束 靠著底部   NSLayoutConstraint* alginBottom = [NSLayoutConstraint constraintWithItem:self.menu                                   attribute:NSLayoutAttributeBottom                                   relatedBy:NSLayoutRelationEqual                                    toItem:self.view                                   attribute:NSLayoutAttributeBottom                                  multiplier:1                                   constant:0.0];   [self.view addConstraint:alginBottom];   //添加高度   self.bottomHeightCons = [NSLayoutConstraint                constraintWithItem:self.menu                attribute:NSLayoutAttributeHeight                relatedBy:NSLayoutRelationEqual                toItem:nil                attribute:0                multiplier:1                constant:260];   [self.menu addConstraint:self.bottomHeightCons];   //添加右邊約束   NSLayoutConstraint* rightMargin = [NSLayoutConstraint constraintWithItem:self.menu                                   attribute:NSLayoutAttributeRight                                   relatedBy:NSLayoutRelationEqual                                    toItem:self.view                                   attribute:NSLayoutAttributeRight                                  multiplier:1                                   constant:0.0];   [self.view addConstraint:rightMargin];   //添加左邊約束   NSLayoutConstraint* leftMargin = [NSLayoutConstraint constraintWithItem:self.menu                                   attribute:NSLayoutAttributeLeft                                   relatedBy:NSLayoutRelationEqual                                    toItem:self.view                                   attribute:NSLayoutAttributeLeft                                  multiplier:1                                   constant:0.0];   [self.view addConstraint:leftMargin]; } //更多操作按鈕的協議監聽接口 -(void)onChangListener{   //[self.view layoutIfNeeded];   if(self.bottomHeightCons.constant == 40){     self.bottomHeightCons.constant = 260;   }else{     self.bottomHeightCons.constant = 40;   }   [UIView animateWithDuration:0.5 animations:^{     [self.view layoutIfNeeded];   }];    } 

總結

以上所述是小編給大家介紹的IOS實現聊天界面底部菜單欄效果,希望對大家有所幫助,如果大家有任何疑問請給我留言,小編會及時回復大家的。在此也非常感謝大家對武林網網站的支持!

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 阿拉善盟| 镇宁| 哈尔滨市| 安多县| 博罗县| 衢州市| 手游| 康乐县| 怀远县| 邢台市| 晋江市| 望奎县| 宣威市| 永兴县| 宾川县| 乐至县| 乌兰县| 长宁县| 织金县| 灵石县| 修文县| 土默特右旗| 克山县| 衢州市| 孝昌县| 二手房| 阳曲县| 定远县| 广宁县| 宁晋县| 南京市| 莆田市| 贺州市| 彭州市| 息烽县| 深圳市| 新晃| 溧阳市| 夏邑县| 镇雄县| 革吉县|