Exposing an app’s ubiquitous container to iCloud Drive in iOS 8

I was experiencing a similar problem with my application. I was able to make this work by doing the following: Add the NSUbiquitousContainers setting to my Info.plist file according to documentation here https://developer.apple.com/library/prerelease/ios/documentation/General/Conceptual/ExtensibilityPG/FileProvider.html. Here is the relevant code: <dict> <!– … other top-level Info.plist settings … –> <key>NSUbiquitousContainers</key> <dict> <key>iCloud.com.example.MyApp</key> <dict> <key>NSUbiquitousContainerIsDocumentScopePublic</key> <true/> <key>NSUbiquitousContainerSupportedFolderLevels</key> <string>Any</string> … Read more

What is the meaning of “Localization native development region” entry in info.plist?

From the CFBundle documentation: kCFBundleDevelopmentRegionKey The name of the development language of the bundle. When CFBundle looks for resources, the fallback is to look in the lproj whose name is given by the kCFBundleDevelopmentRegionKey in the Info.plist file. You must, therefore, ensure that a bundle contains an lproj with that exact name containing a copy … Read more

NSLocationWhenInUseUsageDescription warning, but I have already added it

Adding both NSLocationAlwaysAndWhenInUseUsageDescription and NSLocationWhenInUseUsageDescription keys in plist solved my problem. <key>NSLocationAlwaysUsageDescription</key> <string>Your location is required for xyz benefits for you</string> <key>NSLocationWhenInUseUsageDescription</key> <string>Your location is required for xyz benefits for you</string>

tech