Search results for

“Visual Studio Maui IOS”

109,113 results found

Post

Replies

Boosts

Views

Activity

landmark api
Hi all,I would like to know if there was a .api for the iOS camera that has the landmarks features and that is exportable to an app in development?Thanks a lot.
Topic: UI Frameworks SubTopic: UIKit Tags:
0
0
174
Jun ’15
Can't submit app - "Invalid Signature - Code object is not signed at all"
Hello,I have submitted my app build from xCode on May 30, 2015. It passed all validations during submission and successfully appeared in iTunes Connect.Then I realized that there are few things that I want to fix before letting Apple start reviewing.Starting from yesterday (June 9) I am trying to submit another build for the same application using the same configurations and same xCode method for submission, but what I get is:Invalid Binary in the status line for all newly uploaded buildsAn email from iTunes Connect after each build upload, with this error description:Invalid Signature - Code object is not signed at all. Make sure you have signed your application with a distribution certificate, not an ad hoc certificate or a development certificate. Verify that the code signing settings in Xcode are correct at the target level (which override any values at the project level). Additionally, make sure the bundle you are uploading was built using a Release target in Xcode, not a Simulator target. If you are cer
3
0
3.6k
Jun ’15
Reply to Swift and Mathematics
Perhaps I am misunderstanding your question, but all mathematical functions fromhttps://developer.apple.com/library/ios/documentation/System/Conceptual/ManPages_iPhoneOS/man3/math.3.html#//apple_ref/doc/man/3/mathare available in Swift, for example:import Foundation let x = sin(M_PI/2) let y = atan2(0.0, 1.0) let z = exp(1.0) let p = pow(2.0, 3.0)
Topic: Programming Languages SubTopic: Swift Tags:
Jun ’15
SCNSceneSource.entryWithIdentifier not working with Xcode 7.0 and Swift 2.0
With Xcode 6.3.2 and Swift 1.3 Collada (DAE) files were loaded and entries found (e.g. animation) by using SCNSceneSource.entryWithIdentifier. With Xcode 7.0 and Swift 2.0, the file is loaded (SCNSceneSource.identifiersOfEntriesWithClass work) but no entries are found.Tried with MacOSX, iOS apps and several files.Her is the codelet sceneSource = SCNSceneSource(URL: url!, options: nil) let animationIDs = sceneSource.identifiersOfEntriesWithClass(CAAnimation.self) as [String] let animation : CAAnimation? = sceneSource.entryWithIdentifier(Name, withClass: CAAnimation.self)First two lines work and return identifiers including the one label Name. Line 3 returns only nil. Same code worked before with Xcode 6.3.2 and Swift 1.3
1
0
939
Jun ’15
Music Match Songs Not Showing in iOS 9
After updating my iPhone 5s to iOS 9, my Music Match files are not showing even with the iCloud Music Library switch ON.They still show on my iOS 8 devices.I tried turning off the iCloud Music Library switch and turning it back on.After Loading Library finished, they still don't show.I've already reported this as a bug, but was wondering if anyone knows a work around?
3
0
537
Jun ’15
iOS distribution certificate
Dear Developers,I am having a problem. the problem is that i can't get a IOS distribution certificate. this certificate what I need is for the Magcastapp to publish magazines.when i try to get the certificate there is no distribution on the list of certificates. is this normal or has it changed in the last update?thanks for your time and help in regard.greets,Dieter RoodnatSpijker&Co the Netherlands
0
0
278
Jun ’15
How can I install the IOS 9 beta in my Iphone
Hey guys, i'm new here. I just want to knowHow can I install the IOS 9 beta in my Iphone, restore? or what else. I use Mac.
Replies
0
Boosts
0
Views
284
Activity
Jun ’15
Reply to WPA 2 Enterprise wireless not working?
I am also noticing this in iOS 9. So I am wondering if it something to do with Key Chain as well.
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Jun ’15
Reply to Can anybody teach me how to register udid number? I want to install iOS 9 beta in my iPad!
You need to get the UDID of your device from iTunes (click on the device in itunes then double click the serial number and it will change to the UDID - you can copy it to the clipboard to pasteGoto https://developer.apple.com/ios/manage/devices/index.actionlogin using your Apple iD and then add device UUID
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Jun ’15
landmark api
Hi all,I would like to know if there was a .api for the iOS camera that has the landmarks features and that is exportable to an app in development?Thanks a lot.
Topic: UI Frameworks SubTopic: UIKit Tags:
Replies
0
Boosts
0
Views
174
Activity
Jun ’15
Can't submit app - "Invalid Signature - Code object is not signed at all"
Hello,I have submitted my app build from xCode on May 30, 2015. It passed all validations during submission and successfully appeared in iTunes Connect.Then I realized that there are few things that I want to fix before letting Apple start reviewing.Starting from yesterday (June 9) I am trying to submit another build for the same application using the same configurations and same xCode method for submission, but what I get is:Invalid Binary in the status line for all newly uploaded buildsAn email from iTunes Connect after each build upload, with this error description:Invalid Signature - Code object is not signed at all. Make sure you have signed your application with a distribution certificate, not an ad hoc certificate or a development certificate. Verify that the code signing settings in Xcode are correct at the target level (which override any values at the project level). Additionally, make sure the bundle you are uploading was built using a Release target in Xcode, not a Simulator target. If you are cer
Replies
3
Boosts
0
Views
3.6k
Activity
Jun ’15
How to exclude Model I/O framework with legacy code?
Hello,I am currently porting a legacy project to iOS 9.0 and my code (OpenGLES 2) which has been working fine with iOS 8.+ gets in conflict with the Model I/O framework which I do not need.How do I prevent my project in iOS 9.0 from making use of the Model I/O framework?Thank you very much.Kind regards, Lars
Replies
1
Boosts
0
Views
601
Activity
Jun ’15
Reply to Swift and Mathematics
Perhaps I am misunderstanding your question, but all mathematical functions fromhttps://developer.apple.com/library/ios/documentation/System/Conceptual/ManPages_iPhoneOS/man3/math.3.html#//apple_ref/doc/man/3/mathare available in Swift, for example:import Foundation let x = sin(M_PI/2) let y = atan2(0.0, 1.0) let z = exp(1.0) let p = pow(2.0, 3.0)
Topic: Programming Languages SubTopic: Swift Tags:
Replies
Boosts
Views
Activity
Jun ’15
SCNSceneSource.entryWithIdentifier not working with Xcode 7.0 and Swift 2.0
With Xcode 6.3.2 and Swift 1.3 Collada (DAE) files were loaded and entries found (e.g. animation) by using SCNSceneSource.entryWithIdentifier. With Xcode 7.0 and Swift 2.0, the file is loaded (SCNSceneSource.identifiersOfEntriesWithClass work) but no entries are found.Tried with MacOSX, iOS apps and several files.Her is the codelet sceneSource = SCNSceneSource(URL: url!, options: nil) let animationIDs = sceneSource.identifiersOfEntriesWithClass(CAAnimation.self) as [String] let animation : CAAnimation? = sceneSource.entryWithIdentifier(Name, withClass: CAAnimation.self)First two lines work and return identifiers including the one label Name. Line 3 returns only nil. Same code worked before with Xcode 6.3.2 and Swift 1.3
Replies
1
Boosts
0
Views
939
Activity
Jun ’15
Music Match Songs Not Showing in iOS 9
After updating my iPhone 5s to iOS 9, my Music Match files are not showing even with the iCloud Music Library switch ON.They still show on my iOS 8 devices.I tried turning off the iCloud Music Library switch and turning it back on.After Loading Library finished, they still don't show.I've already reported this as a bug, but was wondering if anyone knows a work around?
Replies
3
Boosts
0
Views
537
Activity
Jun ’15
Phone calls disconnect when speakerphone button is pressed
After updating to iOS 9, if I answer a call and press the speakerphone button, the call is disconnected about 60% of the time.Is anyone else seeing this?
Replies
4
Boosts
0
Views
1.5k
Activity
Jun ’15
iOS 9 Beta 1 Battery Drain
Has anyone else been noticing a battery drain on iOS 9 Beta 1? I didn't plug in my phone before bed last night because it was at 97% but then when I woke up my battery was down to 47%.
Replies
1
Boosts
0
Views
1k
Activity
Jun ’15
Shazam does not work in Siri in iOS 9.0
Shazam does not work in iOS 9.0 in Siri. Does anyone have the same issue?. I just hope that one from Apple will look at this and fix the issue.
Replies
3
Boosts
0
Views
382
Activity
Jun ’15
iOS distribution certificate
Dear Developers,I am having a problem. the problem is that i can't get a IOS distribution certificate. this certificate what I need is for the Magcastapp to publish magazines.when i try to get the certificate there is no distribution on the list of certificates. is this normal or has it changed in the last update?thanks for your time and help in regard.greets,Dieter RoodnatSpijker&Co the Netherlands
Replies
0
Boosts
0
Views
278
Activity
Jun ’15
Reply to iOS 9 Beta 1 Battery Drain
There are loads of people talking about it on this thread:https://forums.developer.apple.com/thread/3701It's pretty common with iOS betas although this one does seem worse than usual.
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Jun ’15
Reply to iTunes login not accepted
This is a known bug in the iOS 9 release notes. https://developer.apple.com/library/prerelease/ios/releasenotes/General/RN-iOSSDK-9.0/index.html
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Jun ’15