91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

iOS開發之topLayoutGuide和bottomLayoutGuide的使用小技巧分享

發布時間:2020-09-03 20:30:02 來源:腳本之家 閱讀:170 作者:宋冬野 欄目:移動開發

前言

LayoutGuide這個概念在本人從事iOS開發過程中一直是比較陌生的。直至最近想要了解這個細碎的知識點,就隨手查了一下,發現這個概念從iOS7的top/bottom LayoutGuide,到iOS9 UILayoutGuide類的引入,直至最近的iOS11涉及適配iPhone X,引入了Safe Area概念,并且UIView增加了一個safeAreaLayoutGuide屬性。發現自己真的是知道的太少了,所以決定深入的研究下。

在IOS開發的過程中我們經常會遇到一些緊貼tabbar有工具條之類的頁面,比如說購買、支付等頁面,往往這些頁面有時候在棧底顯示(頁面有tabbar),有時不在(頁面沒有tabbar)。

比如:

iOS開發之topLayoutGuide和bottomLayoutGuide的使用小技巧分享

這種頁面對于常規的做法是有tabbar的時候設置一套約束,沒有tabbar的時候更新一下約束。但是蘋果提過了一個bottomLayoutGuide可以讓我們更優雅的處理這類問題。

代碼如下:

_bottomView = [UIView new];
 _bottomView.backgroundColor = [UIColor yellowColor];
 [self.view addSubview:_bottomView];
 [_bottomView mas_makeConstraints:^(MASConstraintMaker *make) {
  make.height.equalTo(@40);
  make.left.and.right.equalTo(self.view);
  make.bottom.equalTo(self.mas_bottomLayoutGuide);
 }];

搭配Masonry,使用Masonry提供的mas_bottomLayoutGuide僅需一行我們就可以實現這樣的效果。

同樣來說這種效果對于navigationBar也適用——topLayoutGuide。對應的Masonry使用方法是mas_topLayoutGuide。
完整代碼(代碼量太少就不給完整的鏈接了):

#import "ViewController.h"
#import "Masonry.h"
@interface ViewController ()
@property (strong, nonatomic) UIView *topView;
@property (strong, nonatomic) UIView *bottomView;
@end

@implementation ViewController

- (void)viewDidLoad {
 [super viewDidLoad];
 // Do any additional setup after loading the view, typically from a nib.
 UIButton *btn = [UIButton buttonWithType:UIButtonTypeCustom];
 btn.frame = CGRectMake(0, 164, 80, 50);
 [btn setTitle:@"top" forState:UIControlStateNormal];
 btn.backgroundColor = [UIColor redColor];
 [btn addTarget:self action:@selector(topClick) forControlEvents:UIControlEventTouchUpInside];
 [self.view addSubview:btn];

 UIButton *btn1 = [UIButton buttonWithType:UIButtonTypeCustom];
 btn1.backgroundColor = [UIColor yellowColor];
 btn1.frame = CGRectMake(0, 264, 80, 50);
 [btn1 setTitle:@"bottom" forState:UIControlStateNormal];
 [btn1 setTitleColor:[UIColor blackColor] forState:UIControlStateNormal];
 [btn1 addTarget:self action:@selector(bottomClick) forControlEvents:UIControlEventTouchUpInside];
 [self.view addSubview:btn1];
 [self initView];
}

- (void)initView {
 _topView = [UIView new];
 _topView.backgroundColor = [UIColor greenColor];
 [self.view addSubview:_topView];
 [_topView mas_makeConstraints:^(MASConstraintMaker *make) {
  make.height.equalTo(@40);
  make.left.and.right.equalTo(self.view);

  make.top.equalTo(self.mas_topLayoutGuide);

 }];

 _bottomView = [UIView new];
 _bottomView.backgroundColor = [UIColor yellowColor];
 [self.view addSubview:_bottomView];
 [_bottomView mas_makeConstraints:^(MASConstraintMaker *make) {
  make.height.equalTo(@40);
  make.left.and.right.equalTo(self.view);
  make.bottom.equalTo(self.mas_bottomLayoutGuide);
 }];
}
- (void)topClick{

 [self.navigationController setNavigationBarHidden:!self.navigationController.navigationBarHidden animated:NO];
// [self updateViewConstraints];
}
- (void)bottomClick{

 [self.navigationController setToolbarHidden:!self.navigationController.toolbarHidden animated:NO];
 // 手動觸發updateViewConstraints
// [self updateViewConstraints];
}
- (void)didReceiveMemoryWarning {
 [super didReceiveMemoryWarning];
 // Dispose of any resources that can be recreated.
}

@end

附:iOS 使用LayoutGuide 來限制控件的位置,配合Auto Layout constraints

  UIButton *button = [UIButton buttonWithType:UIButtonTypeDetailDisclosure];
  [self.view addSubview:button];
  
  [button setTranslatesAutoresizingMaskIntoConstraints: NO];

  // 得到當前視圖的最低基準限制,這個是對于Auto Layout constraint來說的。
  id bottomGuide = self.bottomLayoutGuide;
  NSDictionary *viewsDictionary = NSDictionaryOfVariableBindings (button, bottomGuide);
  [self.view addConstraints:[NSLayoutConstraint constraintsWithVisualFormat: @"V:[button]-20-[bottomGuide]"
                                   options: 0
                                   metrics: nil
                                    views: viewsDictionary]];
  
  [self.view layoutSubviews];

同理可以得到topLayoutGuide,這個是視圖最高基準限制

總結

以上就是這篇文章的全部內容了,希望本文的內容對大家的學習或者工作具有一定的參考學習價值,如果有疑問大家可以留言交流,謝謝大家對億速云的支持。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

晋城| 台安县| 无极县| 信丰县| 临汾市| 麻城市| 张家界市| 合作市| 西畴县| 册亨县| 珠海市| 桦甸市| 大方县| 江都市| 安西县| 淮南市| 泸水县| 东乌珠穆沁旗| 永川市| 靖州| 崇礼县| 辽阳县| 靖安县| 湘乡市| 凌源市| 虹口区| 仪征市| 克山县| 四子王旗| 镇赉县| 潼南县| 勐海县| 阳西县| 临泉县| 大兴区| 白河县| 马关县| 新乡市| 互助| 古浪县| 汝州市|