Xcode9 和 iOS11 遇到的問題

2021-08-17 18:48:23 字數 1049 閱讀 5010

xcode9 和 ios11 遇到的問題

解決:對應的庫(jpush)在xcode9上執行需要更新到最新版本(其他類似問題也一樣的解決方法)

2、mjrefresh上拉重新整理,明明已經呼叫結束重新整理,但是並沒有作用,還在一直載入請求資料,如下圖所示:

解決方法:

self.tableview.estimatedrowheight = 0;

self.tableview.estimatedsectionheaderheight = 0;

self.tableview.estimatedsectionfooterheight = 0;

3、uitableviewstylegrouped

樣式的uitableview

的sectionheader

和sectionfooter

有乙個預設的高度,通常不需要顯示

header

或者footer

的時候,會這麼寫

- (cgfloat)tableview:(uitableview *)tableview heightforheaderinsection:(nsinteger)section

- (cgfloat)tableview:(uitableview *)tableview heightforfooterinsection:(nsinteger)section

但是在ios11裡面你會發現段頭段尾又回來辣!改了各種新增的屬性比如safearea之類的一點用都沒有,最後發現必須要把estimatedsectionheaderheight置0才變回去(類問題2)

4、ui*******

上新增子檢視[self.*******

addsubview:sendbutton];

控制項無法響應事件,

更改:[self.*******

setitems: sendbutton];

5、ios11 uitextfiled 有記憶體洩漏(未解決,待續)

搭建xcode9的IOS開發環境

首先感謝一下大佬們提供的資源 映象 關於vm的破解與os系統的安裝 關於mac系統虛擬機器如何問題 第一部分 軟體準備 第二部分 安裝vmware workstation 解鎖vmware和安裝os x 第三部分 在os x上安裝xcode 提醒一下最好去xcode官方看一下版本與支援系統的型號,我...

unity打包xcode,在iOS11裝置除錯報錯

unity版本 5.4.5p5 xcode版本 xcode9 ios版本 ios11 unity打包xcode,進行除錯狀態下報錯 validaterenderpassdescriptor 551 failed assertion texture at depthattachment has usa...

Xcode 9 使用顏色集和Ziplin

顏色集是xcode 9 帶來的新特性.你可以把各種顏色值新增到asset catalog裡面.它有什麼用途呢?1.可以在 中通過uicolor來引用 ios let color uicolor named sillyblue macos let color nscolor named sillybl...