Archive
Archive for the ‘iOS Simulator’ Category
Xcode cannot run using the selected device. No provisioned iOS device … iPhone 3G
April 26, 2011
Leave a comment
There is no iOS 4.3 update for the iPhone 3G and iPod Touch 2G available. If you have set the Deployment Target to 4.3 in your Xcode project settings you will get an error.
To run the app on your iPhone 3G you have to set the Deployment Target to 4.2.
Categories: Development, iOS Simulator, Xcode
Delete SQLite Database of iPhone/iPad Simulator App
March 30, 2011
Leave a comment
You can find and delete the sqlite database file of your app here:
/Macintosh HD/Users/<username>/Library/Application Support/iPhone Simulator/<Simulator-Version>/Applications/<app-key>/Documents/
Categories: Development, iOS, iOS Simulator, Xcode
Differentiate between iPhone, iPad and simulator
October 20, 2010
5 comments
#if TARGET_IPHONE_SIMULATOR
// simulator specific code#elif TARGET_OS_IPHONE
// iPhone specific code#elif TARGET_OS_IPAD // iPad specific code
#else // Unknown target #endif
Categories: CodeSnippets, iOS, iOS Simulator, Xcode
iPhone Simulator Screenshots
April 30, 2010
Leave a comment
With this tool it’s really easy to take screenshots:
http://www.curioustimes.de/iphonesimulatorcropper/index.html
Categories: iOS, iOS Simulator, Xcode
iPhone Simulator
March 20, 2010
Leave a comment
Shortcuts:
Drehen des iPhones: cmd + -> bzw. cmd + <-
Categories: iOS, iOS Simulator, Xcode