網頁

2020年9月15日 星期二

解決〞Design editor is unavailable until after a successful project sync〞

將舊案從Eclipse匯入到Android studio,點選MainActivity.xml想改畫面卻一直出現底下的訊息
查了下資料,看到這篇android studio 新建一個專案,卻出現Design editor is unavailable until after a successful project sync,看起來點選File -> sync project with Gradle Files,出現Erorr:“The minSdk version should not be declared in the android manifest file. You can move the version from the manifest to the defaultConfig in the build.gradle file.〞

找半天找到AndroidManifes.xml,查看發現有底下這句
<uses-sdk android:minSdkVersion="7" android:targetSdkVersion="17"/>

將它mark掉後,再點選File -> sync project with Gradle Files,就build成功可以使用了

參考網址:

xquery用for loop取得json array的值

上傳json array,卻發現用底下的code一直變成存成單一字串

for $item in params?array
	let $new := <item>{$item}</item>
	return update insert $new into $file

查半天覺得怪,參考JSON改成

let $size := array:size($params?array)
for $index in (1 to size)
	let $new := <item>{$params?array($index)}</item>
	return update insert $new into $file

這樣就OK了,看起來似乎是無法直接使用、要再查看看


參考網址:

JSON

2020年9月6日 星期日

解決UITableView的Grouped型態的Section間會有空隙

為了讓Section不會一直停留在最上方,將UITableView的style改成UITableViewStyleGrouped。但卻發現第二個section和第一個seciont的最後一個元素隔一大段空白,查半天看到的StackOver都沒有但打勾確認,不過實際測了下Space Between Sections in UITableview的解決,如下面程式碼就能解決了,其實不能回傳0是要注意的,就直接給個比0大的值就好

- (CGFloat)tableView:(UITableView *)tableView heightForFooterInSection:(NSInteger)section{
    return 0.00001f;
}


參考網址:

Space Between Sections in UITableview

2020年9月4日 星期五

iOS上架遇到出口合資訊這怪問題

上傳iOS app後,點選建置版本後,跳出回應"出口合規資訊"這樣的問題,查半天看半天大家都選否,也不是很清楚,APP TestFlight缺少出口合規資訊是寫了這是很久前的規定"很久很久之前美國政府不允許採用高強度加密的套件,必須改成弱強度的加密方式",蘋果提交版本後顯示”缺少出口合規證明“的解決辦法這邊倒是有特別寫個解法,最後選了否......再看看狀況吧


參考網址:

https://www.ptt.cc/bbs/MacDev/M.1513654588.A.92C.html

APP TestFlight缺少出口合規資訊

蘋果提交版本後顯示”缺少出口合規證明“的解決辦法

解決"ERROR ITMS-90339: "This bundle is invalid. The Info.plist contains an invalid key 'UIApplicationExitsOnSuspend' in bundle"

 上架上傳app時遇到個Error,"ERROR ITMS-90339: "This bundle is invalid. The Info.plist contains an invalid key 'UIApplicationExitsOnSuspend' in bundle XXX [XXX.app]""


看半天,看到UIApplicationExitsOnSuspend key issue. How do I fix it?有寫,對著info.plist按右鍵,點選"Show Raw Keys/Values",倒是真的出現UIApplicationExitsOnSuspend,將它拿掉就可以過了

參考網址:

UIApplicationExitsOnSuspend key issue. How do I fix it?