During mobile development when using the iOS Simulator you need to review local files that you may be saving to the file system or sqlite db files.
Apple previously located the iOS Simulator files at
/Library/Application Support/iPhone Simulator/[OS version]/Applications
In the new version of xcode 6 the above location is no longer present. A bunch of googling turned up nothing until I found a program called SimPholders that provides a program that locates your simulator files for you along with providing a menu that lists the different simulator versions.
Amaze balls!
http://simpholders.com/
Wednesday, March 25, 2015
Friday, March 13, 2015
iOS - Xamarin - Prevent entry of characters / Allow only numeric input in UITextField
textField.ShouldChangeCharacters = (UITextField textField, NSRange range, string replacementString) => {
int test;
return replacementString.Length == 0 || int.TryParse(replacementString, out test);
};
Subscribe to:
Posts (Atom)