Search results for

“Visual Studio Maui IOS”

109,043 results found

Post

Replies

Boosts

Views

Activity

iOS: "Forget" bluetooth peripheral programmatically
Hello,I'm using Core Bluetooth to pair with a bluetooth peripheral (encrypted connection). Currently, it seems like the only way to forget or unpair the bluetooth peripheral after successfully pairing with it is through Settings > Bluetooth > Device Name > Forget This Device.I've noticed that some apps (like this one: https://itunes.apple.com/us/app/elgato-smart-key/id674533376?mt=8), allow a user to forget a connected device programmatically through the app (and to my surprise the paired peripheral is also removed from the Settings app, even though it previously showed up there as well). Does anybody know how forgetting a paired device programmatically is possible?Thanks!
6
0
14k
Jun ’15
Reply to OS X 10.11 Beta Software Compatibility
Same for me... but I blew it out anyway... had some issues with Disk Utility but im good now. Runnign Parallels with a regualr VM of Windows 10 with no issues.Office 2016 was working fine but now with the update yesterday Outlook has some visual issues/bugs. Reflector 2 - Not workingLync for Mac - Not workingEvernote - WorkingDropbox/OneDrive/GoogleDrive - Working
Topic: App & System Services SubTopic: Core OS Tags:
Jun ’15
Audio Unit Tool Box
Hi,I am new to iOS programming.I want to learn more about audio related features in SWIFT.How can I get a better understanding the concept of Nodes, Audio Unit toolBox and AU Graphs using SWIFT?Are there any resources with examples available?I want to produce audio spectrums etc.Your input will be greatly appreciated.Thank you,Fizza
2
0
578
Jun ’15
Reply to UIWebView loadRequest forcing to https?
This is a new security feature. iOS 9 enforces secure connections, so all normal http connections will fail by default. Right now this won't work for many use cases, so you can opt-out for specific domains or even completely. Look for the keyword App Transport Security (ATS).You'll find some more information in this thread:https://forums.developer.apple.com/message/5857
Topic: App & System Services SubTopic: Core OS Tags:
Jun ’15
Reply to NSURLSession not working as expected in watchOS 2 beta
This is a new security feature. iOS 9 enforces secure connections, so all normal http connections will fail by default. Right now this won't work for many use cases, so you can opt-out for specific domains or even completely. Look for the keyword App Transport Security (ATS).You'll find some more information in this thread:https://forums.developer.apple.com/message/5857
Topic: App & System Services SubTopic: General Tags:
Jun ’15
Reply to session.dataTaskWithRequest wrong URL
This is a new security feature. iOS 9 enforces secure connections, so all normal http connections will fail by default. Right now this won't work for many use cases, so you can opt-out for specific domains or even completely. Look for the keyword App Transport Security (ATS).You'll find some more information in this thread:https://forums.developer.apple.com/message/5857
Topic: Programming Languages SubTopic: Swift Tags:
Jun ’15
Reply to Getting -1012 (NSURLErrorUserCancelledAuthentication) for all my download requests
This is probably because of a new security feature. iOS 9 enforces secure connections, so all normal http connections will fail by default. Right now this won't work for many use cases, so you can opt-out for specific domains or even completely. Look for the keyword App Transport Security (ATS).You'll find some more information in this thread:https://forums.developer.apple.com/message/5857
Topic: App & System Services SubTopic: Core OS Tags:
Jun ’15
Reply to Where is Content Blocker Extensions documentation?
Steps so far:1) Create Project with for example iOS/Application/SingleViewApplication2) Add Target iOS / Application Extensions / Content Blocker Extension3) Edit blockerList.jsonsample:[ { trigger: { url-filter: www.domain.com/file.png }, action: { type: block } },{ trigger: { url-filter: www.domain2.com/file2.png }, action: { type: block } } ]4) Install app5) change Safari Settings and enable new extension6) use Safari Browser=> result for me is currently, that the listed images are blocked, but not js files. The images are then not displayed on the website and on the loaded resources area in the Safari Web Inspector, if the device is monitored through the desktop Safari.
Topic: Safari & Web SubTopic: General Tags:
Jun ’15
iOS 8 sporadic certificate pinning issue
Hi,I asked the same question in now archived thread below (sorry I cannot reply to it since it is archived).https://devforums.apple.com/message/1140952#1140952eskimo1 answered with some good guidelines to get memory dumps of the activity and analyze the packets going out and coming in, and so we did. Here are our finidings by looking at the packets.As a fact, our server supports only TLS1.2 and we dont use any third party libraries as HTTP connection frameworks, only Apple's NSURLConnection.1. For successful requests going back and forth between server and iOS client, we always see iOS is using TLS1.22. If there is a network problem (slow connectivity, connection lost while processing ..etc), again iOS uses only TLS1.23. When this particular issue occurrs (while doing the certificate pinning), the iOS sends the requests on TLS1.2 for few times and suddenly it downgrades itself to use TLS1.0 and try to establish a connection with the backend. Hence, server responds with cert
0
0
306
Jun ’15
iOS: "Forget" bluetooth peripheral programmatically
Hello,I'm using Core Bluetooth to pair with a bluetooth peripheral (encrypted connection). Currently, it seems like the only way to forget or unpair the bluetooth peripheral after successfully pairing with it is through Settings > Bluetooth > Device Name > Forget This Device.I've noticed that some apps (like this one: https://itunes.apple.com/us/app/elgato-smart-key/id674533376?mt=8), allow a user to forget a connected device programmatically through the app (and to my surprise the paired peripheral is also removed from the Settings app, even though it previously showed up there as well). Does anybody know how forgetting a paired device programmatically is possible?Thanks!
Replies
6
Boosts
0
Views
14k
Activity
Jun ’15
Reply to Cellular data connection unstable in beta
I am also having this issue with iOS 9 Beta 1 on a verified good SIM and good phone, A1533.When the cellular data is not working for me the SMS and cellular phone calls function just fine.
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Jun ’15
Reply to OS X 10.11 Beta Software Compatibility
Same for me... but I blew it out anyway... had some issues with Disk Utility but im good now. Runnign Parallels with a regualr VM of Windows 10 with no issues.Office 2016 was working fine but now with the update yesterday Outlook has some visual issues/bugs. Reflector 2 - Not workingLync for Mac - Not workingEvernote - WorkingDropbox/OneDrive/GoogleDrive - Working
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Jun ’15
iOS 9 App Store not letting download free apps.
I don't know if anybody else is experiencing the same issue but at least on the iPhone 6 Plus I cannot download free apps from the app store when running iOS 9. You tap get and it turns into instal but after clicking instal it switches back to get.I don't know if there is a fix either, but if anyone has any idea what's going on let me know.
Replies
1
Boosts
0
Views
457
Activity
Jun ’15
Reply to iOS 9 Beta battery life
How to Re-installed ios 9 to ios 8?
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Jun ’15
Audio Unit Tool Box
Hi,I am new to iOS programming.I want to learn more about audio related features in SWIFT.How can I get a better understanding the concept of Nodes, Audio Unit toolBox and AU Graphs using SWIFT?Are there any resources with examples available?I want to produce audio spectrums etc.Your input will be greatly appreciated.Thank you,Fizza
Replies
2
Boosts
0
Views
578
Activity
Jun ’15
Getting -1012 (NSURLErrorUserCancelledAuthentication) for all my download requests
Since upgrading my app to iOS 9, I get Error Domain=NSURLErrorDomain Code=-1012 for all my download network requests.Any ideas why and what can be done?
Replies
1
Boosts
0
Views
1.2k
Activity
Jun ’15
iAD Not Working on iOS 9
iAd Is not loading on iOS 9. This game was made using Unity3D.HELP!!!
Replies
0
Boosts
0
Views
113
Activity
Jun ’15
Reply to UIWebView loadRequest forcing to https?
This is a new security feature. iOS 9 enforces secure connections, so all normal http connections will fail by default. Right now this won't work for many use cases, so you can opt-out for specific domains or even completely. Look for the keyword App Transport Security (ATS).You'll find some more information in this thread:https://forums.developer.apple.com/message/5857
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Jun ’15
Reply to NSURLSession not working as expected in watchOS 2 beta
This is a new security feature. iOS 9 enforces secure connections, so all normal http connections will fail by default. Right now this won't work for many use cases, so you can opt-out for specific domains or even completely. Look for the keyword App Transport Security (ATS).You'll find some more information in this thread:https://forums.developer.apple.com/message/5857
Topic: App & System Services SubTopic: General Tags:
Replies
Boosts
Views
Activity
Jun ’15
Reply to session.dataTaskWithRequest wrong URL
This is a new security feature. iOS 9 enforces secure connections, so all normal http connections will fail by default. Right now this won't work for many use cases, so you can opt-out for specific domains or even completely. Look for the keyword App Transport Security (ATS).You'll find some more information in this thread:https://forums.developer.apple.com/message/5857
Topic: Programming Languages SubTopic: Swift Tags:
Replies
Boosts
Views
Activity
Jun ’15
Reply to Getting -1012 (NSURLErrorUserCancelledAuthentication) for all my download requests
This is probably because of a new security feature. iOS 9 enforces secure connections, so all normal http connections will fail by default. Right now this won't work for many use cases, so you can opt-out for specific domains or even completely. Look for the keyword App Transport Security (ATS).You'll find some more information in this thread:https://forums.developer.apple.com/message/5857
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Jun ’15
Reply to Where is Content Blocker Extensions documentation?
Steps so far:1) Create Project with for example iOS/Application/SingleViewApplication2) Add Target iOS / Application Extensions / Content Blocker Extension3) Edit blockerList.jsonsample:[ { trigger: { url-filter: www.domain.com/file.png }, action: { type: block } },{ trigger: { url-filter: www.domain2.com/file2.png }, action: { type: block } } ]4) Install app5) change Safari Settings and enable new extension6) use Safari Browser=> result for me is currently, that the listed images are blocked, but not js files. The images are then not displayed on the website and on the loaded resources area in the Safari Web Inspector, if the device is monitored through the desktop Safari.
Topic: Safari & Web SubTopic: General Tags:
Replies
Boosts
Views
Activity
Jun ’15
New Developer
Hi,I just registered as a new apple developer. I came across two programming laguages Objective C and Swift.As a new developer which programming language must be leanred to start developing apps for iOS. Do I still need Objective C, or just learning Swift is fine?
Replies
1
Boosts
0
Views
239
Activity
Jun ’15
iOS 8 sporadic certificate pinning issue
Hi,I asked the same question in now archived thread below (sorry I cannot reply to it since it is archived).https://devforums.apple.com/message/1140952#1140952eskimo1 answered with some good guidelines to get memory dumps of the activity and analyze the packets going out and coming in, and so we did. Here are our finidings by looking at the packets.As a fact, our server supports only TLS1.2 and we dont use any third party libraries as HTTP connection frameworks, only Apple's NSURLConnection.1. For successful requests going back and forth between server and iOS client, we always see iOS is using TLS1.22. If there is a network problem (slow connectivity, connection lost while processing ..etc), again iOS uses only TLS1.23. When this particular issue occurrs (while doing the certificate pinning), the iOS sends the requests on TLS1.2 for few times and suddenly it downgrades itself to use TLS1.0 and try to establish a connection with the backend. Hence, server responds with cert
Replies
0
Boosts
0
Views
306
Activity
Jun ’15