標籤:蘋果開發人員帳號 app store apple id 關於Apple ID和蘋果開發人員帳號,其實之前我是不清晰的.只知道Apple ID可以在App Store裡面下載各種App.然後蘋果開發人員帳號需要花99$才能註冊,今天突然發現,我很無知.其實是可以免費註冊蘋果開發人員帳號的.並且Apple ID跟開發人員帳號可以是同一個. &
標籤:android.content.ActivityNotFoundException: Unable to find explicit activity class {com.android.settings/com.android.settings.deviceinfo.SoftwareUpdates}; have you declared this activity in your AndroidManifest.xml?目前在開發android 5.0 L .想在settings
標籤:一些Flag的介紹 視窗之後的內容變暗。 public static final int FLAG_DIM_BEHIND = 0x00000002; 視窗之後的內容變模糊。 public static final int FLAG_BLUR_BEHIND = 0x00000004; 不許獲得焦點。&
標籤:Lua封裝類(用物件導向的話說),有三種寫法:如下:方式一Lib = {}Lib.name = nilLib.foo = function (x,y) return x + y endLib.goo = function (x,y) return x - y end 方式二:Lib = { name = nil, foo = function (x,y) return x + y end, goo = function (x,y) return x - y
標籤:有時候,自己下載的或者拷貝過來的JNI項目出現莫名錯誤,通常是找不到標頭檔,可能解決方案如下:Removing the C nature:The only way I could find to reliably removed the C nature from the project was by hand editing Eclipse‘s .project file for the project.Close the Eclipse project (e.g.
標籤:學習lua不得不瞭解其方法或者說文法的特性,比如:多值返回function maximum (a) local mi = 1 -- maximum index local m = a[mi] -- maximum value for i,val in ipairs(a) do if val > m then mi = i m = val end endreturn m,