Search results for

“Visual Studio Maui IOS”

109,114 results found

Post

Replies

Boosts

Views

Activity

Reply to Watch OS 2 and App Groups.
I think not, this is from the transition guide:Your extension now stores files and data on Apple Watch. Any data that is not part of your Watch app or WatchKit extension bundle must be fetched the network or from the companion iOS app running on the user’s iPhone. You cannot rely on a shared group container to exchange files with your iOS app. Fetching files involves transferring them wirelessly to Apple Watch.This is a little troublesome for those of us currently using Core Data in a shared group. Is there any stremlined way to keep a core database in sync across the parent app and extension?
Topic: App & System Services SubTopic: General Tags:
Jun ’15
Reply to Watch OS 2 and App Groups.
See the documentation on Watch Connectivity framework. App Groups are no longer applicable.Watch apps that shared data with their iOS apps using a shared group container must be redesigned to handle data differently. In watchOS 2, each process must manage its own copy of any shared data in the local container directory. For data that is actually shared and updated by both apps, this requires using the Watch Connectivity framework to move that data between them.https://developer.apple.com/library/prerelease/watchos/documentation/WatchConnectivity/Reference/WatchConnectivity_framework/index.html#//apple_ref/doc/uid/TP40015269
Topic: App & System Services SubTopic: General Tags:
Jun ’15
App thinning concern
App Thinning and specifically On Demand Resources, sounds great but there seems to be an elephant in the room I haven't heard anyone address and that is, what about the extremely large percentage of users who don't have an always connected device? A very large percentage of iPads are not always connected to the internet, instead roaming from hotspot to hotspot, and there are even iPhone users who do the same.If your app takes advantage of On Demand Resources then all of those people will be in a bit of trouble, which means as developers we will want to avoid that risk and instead I suspect many people will not take advantage of On Demand Resources which would be a huge shame as well.Has Apple considered making the On Demand Resources work as an opt-in system for customers? In otherwords the developer uses it like intended, but the user themself has a global switch on their iOS device that indicates to the App Store that all apps should be fully downloaded, or use on demand loading.
3
0
573
Jun ’15
How to resolve duplicate symbol issue from different 3rd party library?
Hi All,In my application, I trying to integrate 2 different 3party SDKS and I'm getting duplicate symbol error (see below)duplicate symbol _OBJC_CLASS_$_Reachability in: /Users/********/Dev/iOS/phonegap/voicelayer/voicelayer-sdk-plugin/src/ios/Frameworks/VoiceLayer.framework/VoiceLayer(Reachability.o) /Users/*********/Dev/iOS/*********-iOS-SDK/iOSKandySDK/SampleApp/3rdParty/MobileSDK.framework/MobileSDK(Reachability.o)Seems both 3rd party frameworks are using common library. Please help me how can I resolve the issue.Thanks in Advance,Best Regards,Srini
3
0
4.9k
Jun ’15
Reply to iOS 9 Beta battery life
Hi all,This seems to be a very real issue and the best we can do to help Apple to fix it as soon as they can is to submit radars with battery logs.How to generate battery logs can be found here:https://developer.apple.com/bug-reporting/ios/battery-life/
Topic: App & System Services SubTopic: Core OS Tags:
Jun ’15
Update Stuck on "Checking for Update..."
Is anyone else having trouble updating their Watch to Watch OS 2 beta? I'm currently stuck on the step where you need to actually update the Watch's software. When I go to the Apple Watch app on the iPhone, then General, then Software Update, it displays Checking for Update... and has been doing so for at least 30 minutes. I thought my corporate filter might be blocking the download, so I went on 4G, but it's still happening. I've tried restarting both the Watch and my iPhone, which is running iOS 9 beta, to no avail.I've followed all the steps in the installation guide up until this point, and I'm pretty stuck. Any thoughts would be greatly appreciated!
2
0
2.7k
Jun ’15
Reply to iOS 9 Beta battery life
your watch battery is also effected because iOS 9 on iPhone?Apple must fix the battery issue ASAP. I know, that is a beta, but this problem is heavy. Apple please roll out the beta 2 with a battery fix. than we can focus on our apps...
Topic: App & System Services SubTopic: Core OS Tags:
Jun ’15
TLS PSK with NSURLConnection
Is it possible to TLS PSK ciphers with NSURLConnection/NSURLSession?iOS's SSLGetSupportedCiphers method reports that is supports TLS_PSK_AES256_SHA384.I initially considered that it may be possible by providing the correct NSURLCredential, however it's unclear how I could do this while also providing an PSK hint/Identity.Thanks
2
0
723
Jun ’15
Reply to iOS 9 Beta battery life
I disabled mobile data completely and enabled power saving mode and Wi-Fi and the battery drainage/leaking stopped completely for me. I am testing iOS 9 beta 1 on my iPhone 6. Now it's been in standby mode that way for 1 hour and 14 minutes and have dropped only 1 %. I've already reported it to Apple.Any one else that can try the same thing on their devices?Cheers!
Topic: App & System Services SubTopic: Core OS Tags:
Jun ’15
Reply to Watch OS 2 and App Groups.
I think not, this is from the transition guide:Your extension now stores files and data on Apple Watch. Any data that is not part of your Watch app or WatchKit extension bundle must be fetched the network or from the companion iOS app running on the user’s iPhone. You cannot rely on a shared group container to exchange files with your iOS app. Fetching files involves transferring them wirelessly to Apple Watch.This is a little troublesome for those of us currently using Core Data in a shared group. Is there any stremlined way to keep a core database in sync across the parent app and extension?
Topic: App & System Services SubTopic: General Tags:
Replies
Boosts
Views
Activity
Jun ’15
Reply to Watch OS 2 and App Groups.
See the documentation on Watch Connectivity framework. App Groups are no longer applicable.Watch apps that shared data with their iOS apps using a shared group container must be redesigned to handle data differently. In watchOS 2, each process must manage its own copy of any shared data in the local container directory. For data that is actually shared and updated by both apps, this requires using the Watch Connectivity framework to move that data between them.https://developer.apple.com/library/prerelease/watchos/documentation/WatchConnectivity/Reference/WatchConnectivity_framework/index.html#//apple_ref/doc/uid/TP40015269
Topic: App & System Services SubTopic: General Tags:
Replies
Boosts
Views
Activity
Jun ’15
App thinning concern
App Thinning and specifically On Demand Resources, sounds great but there seems to be an elephant in the room I haven't heard anyone address and that is, what about the extremely large percentage of users who don't have an always connected device? A very large percentage of iPads are not always connected to the internet, instead roaming from hotspot to hotspot, and there are even iPhone users who do the same.If your app takes advantage of On Demand Resources then all of those people will be in a bit of trouble, which means as developers we will want to avoid that risk and instead I suspect many people will not take advantage of On Demand Resources which would be a huge shame as well.Has Apple considered making the On Demand Resources work as an opt-in system for customers? In otherwords the developer uses it like intended, but the user themself has a global switch on their iOS device that indicates to the App Store that all apps should be fully downloaded, or use on demand loading.
Replies
3
Boosts
0
Views
573
Activity
Jun ’15
How to resolve duplicate symbol issue from different 3rd party library?
Hi All,In my application, I trying to integrate 2 different 3party SDKS and I'm getting duplicate symbol error (see below)duplicate symbol _OBJC_CLASS_$_Reachability in: /Users/********/Dev/iOS/phonegap/voicelayer/voicelayer-sdk-plugin/src/ios/Frameworks/VoiceLayer.framework/VoiceLayer(Reachability.o) /Users/*********/Dev/iOS/*********-iOS-SDK/iOSKandySDK/SampleApp/3rdParty/MobileSDK.framework/MobileSDK(Reachability.o)Seems both 3rd party frameworks are using common library. Please help me how can I resolve the issue.Thanks in Advance,Best Regards,Srini
Replies
3
Boosts
0
Views
4.9k
Activity
Jun ’15
Reply to iOS 9 Beta battery life
Hi all,This seems to be a very real issue and the best we can do to help Apple to fix it as soon as they can is to submit radars with battery logs.How to generate battery logs can be found here:https://developer.apple.com/bug-reporting/ios/battery-life/
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Jun ’15
Update Stuck on "Checking for Update..."
Is anyone else having trouble updating their Watch to Watch OS 2 beta? I'm currently stuck on the step where you need to actually update the Watch's software. When I go to the Apple Watch app on the iPhone, then General, then Software Update, it displays Checking for Update... and has been doing so for at least 30 minutes. I thought my corporate filter might be blocking the download, so I went on 4G, but it's still happening. I've tried restarting both the Watch and my iPhone, which is running iOS 9 beta, to no avail.I've followed all the steps in the installation guide up until this point, and I'm pretty stuck. Any thoughts would be greatly appreciated!
Replies
2
Boosts
0
Views
2.7k
Activity
Jun ’15
Reply to iOS 9 Beta battery life
your watch battery is also effected because iOS 9 on iPhone?Apple must fix the battery issue ASAP. I know, that is a beta, but this problem is heavy. Apple please roll out the beta 2 with a battery fix. than we can focus on our apps...
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Jun ’15
TLS PSK with NSURLConnection
Is it possible to TLS PSK ciphers with NSURLConnection/NSURLSession?iOS's SSLGetSupportedCiphers method reports that is supports TLS_PSK_AES256_SHA384.I initially considered that it may be possible by providing the correct NSURLCredential, however it's unclear how I could do this while also providing an PSK hint/Identity.Thanks
Replies
2
Boosts
0
Views
723
Activity
Jun ’15
What happened to the provisioning website?
I always went to developer.apple.com/ios to get devices and provisioning profiles setup, but now it goes somewhere different. Help! I need to setup a new provisioning profile - where is the new location for doing this?
Replies
1
Boosts
0
Views
397
Activity
Jun ’15
Reply to WiFi EAP-TLS errors
Our mobile team is having issues as well. The logs show the same errors for iOS 9 as in 10.11 for this.
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Jun ’15
iCloud is full after installing iOS9 B1
Anyone have their iCloud storage fill up after installing iOS 9 Beta 1? However when I go to manage storage, the numbers just don't add up.
Replies
10
Boosts
0
Views
3k
Activity
Jun ’15
Reply to Music Match Songs Not Showing in iOS 9
Some, but not all, of my iTunes Match songs are appearing on my iOS 9 device. Thanks.
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Jun ’15
Reply to How should one manage authentication?
After searching for a while in the iOS security guide white paper, it seems the BlueTooth and Wi-Fi transmissions between the WatchKit and the iPhone are encrypted. This should solve most issuessource: https://www.apple.com/business/docs/iOS_Security_Guide.pdf
Topic: App & System Services SubTopic: General Tags:
Replies
Boosts
Views
Activity
Jun ’15
Reply to iOS 9 Beta battery life
My development software was running 18% CPU on an iPad Air with iOS 8.3. With iOS 9 Beta 1 it's taking 59% for same operations. The issue seems to be with collections.
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Jun ’15
Reply to iOS 9 Beta battery life
I disabled mobile data completely and enabled power saving mode and Wi-Fi and the battery drainage/leaking stopped completely for me. I am testing iOS 9 beta 1 on my iPhone 6. Now it's been in standby mode that way for 1 hour and 14 minutes and have dropped only 1 %. I've already reported it to Apple.Any one else that can try the same thing on their devices?Cheers!
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Jun ’15