iOS 8.0 Beta Unknown UIKit Log
It’s a bug, and it’s a known one, see http://prod.lists.apple.com/archives/xcode-users/2014/Aug/msg00030.html Yea, sorry about that. Its already been removed, no further bugs necessary.
It’s a bug, and it’s a known one, see http://prod.lists.apple.com/archives/xcode-users/2014/Aug/msg00030.html Yea, sorry about that. Its already been removed, no further bugs necessary.
We’ve resorted to connecting every label to an @IBOutlet and setting its translation in viewDidLoad() with NSLocalizedString. You are doing that right. Seriously. Wrap your development process around it and you’ll get way better off than trying to adopt the mess that the Storyboard localization evolved into. It solves pt.4 – you decide what you … Read more
According to Apple : UISearchDisplayController is deprecated in iOS 8. (Note that UISearchDisplayDelegate is also deprecated.) To manage the presentation of a search bar and display search results in iOS 8 and later, instead use UISearchController. The UISearchController class defines an interface that manages the presentation of a search bar in concert with the search … Read more
In addition to Daij-Djan’s answer: it’s possible to stack the enums so you can request them all at once. Like follows: UIUserNotificationSettings* notificationSettings = [UIUserNotificationSettings settingsForTypes:UIUserNotificationTypeAlert | UIUserNotificationTypeBadge | UIUserNotificationTypeSound categories:nil]; [[UIApplication sharedApplication] registerUserNotificationSettings:notificationSettings]; Debug output mentions I should ask for Application Badge permission
In Xcode6 for all devices splash screen you need to make splash image for each device size retina and non retina. Best way of done this thng use asset Catalog from target–>general like following screenshot: when you tap the right small arrow near of launchImage (->) you can see the following window: Currently there is … Read more
If you use [imageManager requestAVAssetForVideo…], it’ll return an AVAsset. That AVAsset is actually an AVURLAsset, so if you cast it, you can access it’s –url property. I’m not sure if you can create a new asset out of this, but it does give you the location.
Additional to B H answer. Also look this answer. Got this issue when launching my landscape only app from portrait orientation (also the app shouldn’t be presented in recently opened apps list, which can be seen by pressing Home button twice. Perhaps, iOS somehow caches the orientation and window size). My code was self.window = … Read more
I found it. It moved, it’s no longer inside General/Diagnostics… It’s in Privacy/Diagnostics.
In order to update your custom keyboard when the orientation changes, override viewDidLayoutSubviews in the UIInputViewController. As far as I can tell, when a rotation occurs this method is always called. Additionally, as the traditional [UIApplication sharedApplication] statusBarOrientation] doesn’t work, to determine the current orientation use the following snippet: if([UIScreen mainScreen].bounds.size.width < [UIScreen mainScreen].bounds.size.height){ //Keyboard … Read more
In the meantime I have found a good solution. Since this question has so many upvotes, I thought I would quickly describe it. I was inspired to this solution by a WWDC session. I have moved on to Swift so please excuse that the code will be in swift – the concept is however the … Read more