icloud

How to share custom data between iPhone applications?

匿名 (未验证) 提交于 2019-12-03 02:11:02
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 问题: If I make two iPhone applications, how can/should I share custom data (not contacts and stuff like that) among them? Thanks! 回答1: There are two different ways you might go about this. 1) The data you need to share is non-persistent. In other words you need to launch one application with a piece of data that it can do something with. In this case you would register a special URL scheme per application. You can find out more information about URL schemes via Craig Hockenberry in his [redacted] blog post . 2) The data you need to share is

iOS unique user identifier [duplicate]

匿名 (未验证) 提交于 2019-12-03 02:11:02
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 问题: This question already has an answer here: UIDevice uniqueIdentifier Deprecated - What To Do Now? 33 answers I'm writting an application for iphone, which communicates with my server using REST. The main problem is, I need to identify user somehow. Not so long ago, we were allowed to use UDID, but now its not allowed anymore. So what should I use instead? I need some kind of identifier on iphone, so user will delete application, install it again, and he will get same id. 回答1: Firstly, the UDID is only deprecated in iOS 5. That doesn't mean it

iCloud Integration for uploading and downloading files

匿名 (未验证) 提交于 2019-12-03 02:05:01
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 问题: I want to design an app which stores documents on iCloud . But there are some question which has answer before doing actual implementation. The question are as follows, What is maximum file size to upload on iCloud? Can I programmatically calculate/know the available space on user's iCloud account? How can I get the event for uploading and Downloading files from iCloud? Can anyone please help me here ? I read the apple documentation but not understood all the things completely. Thanks In Advance. 回答1: Although you mentioned you've read the

“Couldn't send a valid signature” error when using CloudKit without iCloud account

匿名 (未验证) 提交于 2019-12-03 02:03:01
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 问题: I have submitted an iOS app that uses CloudKit to Apple. It's being rejected because it requires user to sign into iCloud for access. Apple's reasoning is that even without iCloud sign-in, the public database is still readable. So that part of the app should function. I am trying to modify the app but I continue to get this error when I am not signed in. I have searched the web and the solution is always just to sign into iCloud. There is no Apple documentation regarding this error either. Does anyone know how to resolve this without signing

Xcode 6 iOS 8 iCloud core data setup

匿名 (未验证) 提交于 2019-12-03 01:58:03
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 问题: Has anyone got iCloud core data syncing setup on Xcode 6 and iOS 8? (hopefully this isn't a duplicate post) Where did iCloud Core Data storage option go? I remember Core Data had an extra storage option called Core Data storage, but now in Xcode 6 it only seems to show key-value and document storage when I enable the iCloud toggle in Xcode 6. Background Info New iPad app Xcode 6 Targeting minimum version iOS 7 but hoping it works for iOS 8 too? (We can set iOS 8 as minimum) Want to use iCloud Core Data storage instead of key-value or

403 CalDAV error: valid-calendar-object-resource

匿名 (未验证) 提交于 2019-12-03 01:45:01
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 问题: I'm attempting to create a new event in an iCloud calendar. I'm getting a valid-calendar-object-resource error, which according to the spec says my PUT request doesn't meet Section 4.1 in the spec . However, this is the body of the request, which, as far as I can tell, does meet all the requirements in 4.1: BEGIN:VCALENDAR VERSION:2.0 PRODID:-//sebbo.net//ical-generator//EN BEGIN:VEVENT UID:3xq8@the-calendar-api.herokuapp.com SEQUENCE:0 DTSTAMP:20160113T023753Z DTSTART:20160113T033753Z DTEND:20160113T043753Z SUMMARY:Example Event DESCRIPTION

How to sign in to Apple ID in Xcode via command line?

匿名 (未验证) 提交于 2019-12-03 01:35:01
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 问题: I inherited a Xcode setup that builds an iOS app that uses Automatic Signing for the development builds. I now have the task to build some CI setup for this project, but without changing the actual Xcode project . This means I can't switch to manual signing for now. As the project is building fine locally, I didn't expect this to be a big problem, but it turns out Automatic Signing (obviously, in hindsight) needs your Xcode to be signed into the Apple ID (Xcode => Preferences => Accounts) that should be used for automatically creating

MobileGestalt no access to InverseDeviceID

匿名 (未验证) 提交于 2019-12-03 01:27:01
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 问题: This happens with every app when I try to use OpenGLES on my iPhone7+ with iOS10.3 . But it works without any problems on my iPhone7 iOS10.1 . This is the message I get: libMobileGestalt MobileGestaltSupport.m:153: pid 304 (OpenGLES_Ch4_1) does not have sandbox access for ... and IS NOT appropriately entitled libMobileGestalt MobileGestalt.c:549: no access to InverseDeviceID Does anyone have an idea about these messages? I wonder if it is bugs or something else in iOS10.3 ? Because when I run the app on iPhone5s iOS10.2 , those messages did

iCloud Integration for uploading and downloading files

孤街醉人 提交于 2019-12-03 01:26:54
I want to design an app which stores documents on iCloud . But there are some question which has answer before doing actual implementation. The question are as follows, What is maximum file size to upload on iCloud? Can I programmatically calculate/know the available space on user's iCloud account? How can I get the event for uploading and Downloading files from iCloud? Can anyone please help me here ? I read the apple documentation but not understood all the things completely. Thanks In Advance. Although you mentioned you've read the apple icloud documentation, the designing for icloud

iOS8 crash when try to use UIDocumentMenuViewController

匿名 (未验证) 提交于 2019-12-03 01:10:02
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 问题: I use Xamarin.Forms to create iOS app and I use UIDocumentMenuViewController to Access iCloud file. When I run program on iOS9+ program is run normally, But when I try my program with iOS8 emulator program is crash on new UIDocumentMenuViewController(allowedUTIs, UIDocumentPickerMode.Import); and message is saying 'Application initializing document picker is missing the iCloud entitlement. Is com.apple.developer.icloud-container-identifiers set?' What wrong with my app and how can I fix this? Thank you in advance. 回答1: You need to make sure