How to disable word- / line-wrapping
Xcode Preferences (in the menu) -> Text Editing (in the top tabs) -> Indentation (that’s a clickable text in the top of the tab), in there you can check/uncheck Line wrapping
Source:
https://stackoverflow.com/questions/5271530/how-to-disable-word-wrap-in-xcode-4-editor
How to change iOS simulator language
You can simply use the Settings app in the simulator, just like on a normal device. Note that languages are shown in their own language, for instance “French” is “Français”, not “French”.
There is also an option that may be easier for switching back and forth between languages: you can run the app with a flag indicating the country, for instance add the flag -AppleLanguages (fr)
for French.
This is explained more in details here:
http://abizern.org/2012/03/18/simple-localisation-testing/
Fixing some text getting automatically underlined in the app
This is cannot be changed by the app programmer as this is caused by a phone setting. So it’s up to the final user to disable it, in Settings -> General -> Accessibility, and then turning off Button Shapes.
Source:
https://apple.stackexchange.com/questions/124277/some-texts-automatically-underlined-in-iphone-5-with-ios-7-1
Solving error “attempt to present UIAlertController on [some UI] whose view is not in the windows hierarchy”
I got this one while replacing the more robust UIAlertView with UIAlertController. The main PITA from UIAlertController is that you need to feed it the current view as an argument, unlike UIAlertView which apparently just guessed it. This blog post pointed me to the solution for my case. Basically, UIAlertController must be called on the currently visible view, not on some other view (even if it does exist but is not on display right now).
Little bonus: here is the function I use to display a network error alert every time needed:
+(void) networkErrorAlert:(id)sender { UIAlertController* alert = [UIAlertController alertControllerWithTitle: NSLocalizedString(@"Error",@"") message: NSLocalizedString(@"No Internet Connection",@"") preferredStyle: UIAlertControllerStyleAlert]; UIAlertAction* defaultAction = [UIAlertAction actionWithTitle: NSLocalizedString(@"OK",@"") style: UIAlertActionStyleDefault handler: ^(UIAlertAction * action) {}]; [alert addAction:defaultAction]; [sender presentViewController:alert animated:YES completion:nil]; }
0 Responses
Stay in touch with the conversation, subscribe to the RSS feed for comments on this post.