Wednesday, June 20, 2012

XCode and Folder Resources

The latest version of Xcode 4.3 has a serious bug that frustrated me quite a bit recently. If your project has Folder resources in it and these have sub folders with same names in the folder hierarchy, app compiles / builds fine but fails to submit with a completely unrelated error.

Finally had to download an old version 4.2, compile and submit using that. 

Int size on Apple Watch (watchOS)

  Even though Apple Watch chipset is 64-bits, Int is still 32-bit. To get 64 bit behavior you have to explicitly use Int64 https:// jeffver...