2013年6月3日 星期一

Code Sign error: A valid provisioning profile matching the application's Identifier 'OOOOOOOOOOOOO' could not be found

Code Sign error: A valid provisioning profile matching the application's Identifier 'OOOOOOOOOOOOO' could not be found


IOS不是我在說對開發者超不友善.....買了序還認證還會認不到手機~“~

這種狀況很容易發生在你程式是下載的情況.......

有這種錯的朋友,試試看以下步驟

TARGETS----->Info----->Custom iOS Target Properties----->右鍵 Add Row----->加入Bundle identifier----->你自己在Developer設定的App ID就可以囉........

ps.第一次設定會有簽署的視窗!!!就總是....之後就不會再尋問了


2013年5月21日 星期二

MAC_隱藏檔顯示與隱藏_&iOS Simulator路徑

MAC_隱藏檔顯示與隱藏


顯示隱藏檔案

終端機上貼上以下指令,貼上後按下 Return

defaults write com.apple.finder AppleShowAllFiles TRUE


接著再貼上以下指令按下 Return

killall Finder 


隱藏隱藏檔案


終端機上貼上以下指令,貼上後按下 Return


defaults write com.apple.finder AppleShowAllFiles FALSE

接著再貼上以下指令按下 Return

killall Finder

------------------------以上動作須重新開機後才會啓動------------------------

 iOS Simulator路徑

-------------------先完成上述顯示隱藏檔後才看的道路徑-------------------


User /

UserName(自己設定的名稱)/

Library(資料庫)(此為隱藏檔) /

Application Support /

iPhone Simulator /

[OS version][版本號] /

Applications /

[appGUID](會看到亂碼...以更新時間來找你想要的資料)/





2013年4月17日 星期三

IPhone 資料夾使用規範

IPhone 資料夾使用規範


To ensure that backups are as efficient as possible, be sure to store your app’s data according to the following guidelines:
1. Only documents and other data that is user-generated, or that cannot otherwise be recreated by your application, should be stored in the <Application_Home>/Documents directory and will be automatically backed up by iCloud.
  2. Data that can be downloaded again or regenerated should be stored in the <Application_Home>/Library/Caches directory. Examples of files you should put in the Caches directory include database cache files and downloadable content, such as that used by magazine, newspaper, and map applications.
  3. Data that is used only temporarily should be stored in the <Application_Home>/tmp directory. Although these files are not backed up to iCloud, remember to delete those files when you are done with them so that they do not continue to consume space on the user’s device.