iOS開發-automaticallyAdjustsScrollViewInsets屬性

來源:互聯網
上載者:User

iOS開發-automaticallyAdjustsScrollViewInsets屬性
最近遇到一個問題是這樣的,App一般自己都會有一個UINavigationController,頂部TableView如果有tableHeaderView如果設定起始位置是(0,0)是在導覽列的下面的,為了更好地UI希望從螢幕的(0,0)開始,就遇到了上面的這個問題,簡單的看一下效果:  主要代碼如下:  - (UITableView *)tableView {    if (!_tableView) {        _tableView = [[UITableView alloc]                      initWithFrame:CGRectMake(0, 0, CGRectGetWidth(self.view.bounds),                                               CGRectGetHeight(self.view.bounds))                      style:UITableViewStylePlain];        //        _tableView.tableFooterView = [[UIView alloc] init];        _tableView.rowHeight =40.0;        _tableView.sectionHeaderHeight = 0.0;        _tableView.sectionFooterHeight = 0.0;        _tableView.dataSource = self;        _tableView.delegate = self;    }    return _tableView;} -(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{    return 5;}//http://www.cnblogs.com/xiaofeixiang 技術交流:228407086-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{    UITableViewCell  *cell=[[UITableViewCell alloc]init];    cell.textLabel.text=@"部落格園-FlyElephant";    return cell;}這個時候設定automaticallyAdjustsScrollViewInsets效果如下:    官方文檔解釋如下:  A Boolean value that indicates whether the view controller should automatically adjust its scroll view insets. DeclarationSWIFTvar automaticallyAdjustsScrollViewInsets: BoolOBJECTIVE-C@property(nonatomic, assign) BOOL automaticallyAdjustsScrollViewInsetsDiscussionThe default value of this property is YES, which allows the view controller to adjust its scroll view insets in response to the screen areas consumed by the status bar, navigation bar, and toolbar or tab bar. Set to NO if you want to manage scroll view inset adjustments yourself, such as when there is more than one scroll view in the view hierarchy. AvailabilityAvailable in iOS 7.0 and later.簡單點說就是automaticallyAdjustsScrollViewInsets根據按所在介面的status bar,navigationbar,與tabbar的高度,自動調整scrollview的 inset,設定為no,不讓viewController調整,我們自己修改布局即可~ 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.