Search results for

Visual Studio Maui IOS

105,699 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
569
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
296
Jun ’15