2014年6月24日 星期二

Android 如何忽略發佈時 “ is not translated in ” errors?

In "Window" > "Preferences" > "Android" > "Lint Error Checking":
Find the MissingTranslation line, and set it to Warning as seen below:


2013年12月27日 星期五

Objective C 檢查optional delegate function有無實作

if([self.delegate respondsToSelector:@selector(YOUR_FUNCTION)]){ 
    [self.delegate YOUR_FUNCTION]; 
}

2013年12月9日 星期一

JSON Editor Online

http://www.jsoneditoronline.org/

Android 大陸開發者社群

http://www.eoeandroid.com/

Objective-C Coding Style參考

Coding Guidelines for Cocoa


紐約時報行動軟體團隊的Objective-C程式碼撰寫風格手冊

多國語言付費翻譯服務

http://gengo.com/

Corona SDK 有趣的個人開發者網站

http://appsgaga.com/

作者的Corona教學blog
http://learningcoronasdk.blogspot.tw/2013/03/corona-sdk.html

Android Eclipse無法連接小米2問題

在撥號界面按*#*#717717#*#* 開啟

Adobe CS 6 官方下載連結

http://helpx.adobe.com/x-productkb/policy-pricing/cs6-product-downloads.html

Objective-C 文字辨識引擎 Tesseract for iOS

https://github.com/ldiqual/tesseract-ios

安裝教學:
http://lois.di-qual.net/blog/install-and-use-tesseract-on-ios-with-tesseract-ios/

2013年11月11日 星期一

iOS推播 一行產生推播pem檔

openssl pkcs12 -in aps_development.p12 -out aps_development.pem -nodes -clcerts -password pass:''

2013年10月22日 星期二

Java json parser

https://code.google.com/p/json-simple/

example:

JSONObject jsonObj = (JSONObject) JSONValue.parse(json_string);
JSONArray jsonArray = (JSONArray) jsonObj.get("key");

2013年8月22日 星期四

Objective-C 禁用UDID 替代方案:OpenUDID


優缺點分析參考文章:http://www.alexplay.tw/2013/03/udid.html

https://github.com/ylechelle/OpenUDID

取得OpenUDID方式:
#include "OpenUDID.h"
NSString* openUDID = [OpenUDID value];

Objective-C ARC 專案中使用非ARC Code

在build Phases ->Compile Sources找到非ARC code

在Compiler Flags加上: -fno-objc-arc