Search results for

“Visual Studio Maui IOS”

109,042 results found

Post

Replies

Boosts

Views

Activity

Reply to App Review Time
If you're distributing an enterprise app, then it doesn't have to go through review so your question doesn't apply. But if by enterprise you just mean some arbitrary measure of developer size, no - it's a level playing field. An individual writing code on his laptop on the beach goes into the same queue as a company with hundreds of developers. That may not be true for the very biggest household names... companies like Facebook with deep OS integration probably do get special treatment. But the number of such companies is probably in the single digits.And @rromanchuk - I believe you are wrong about app reviews doing nothing. iOS users are much more willing to spend money and install new apps. They have an intrinsic trust that apps won't contain malware / spyware or mess up other apps on their devices. That is entirely thanks to Apple's hard line approach to app reviews. Long term that generates MUCH more revenue for developers. That is my experience at least. Even though there are comparable numbers
Jun ’15
Reply to some method conflicts
A google search suggests the conflicting method is from the StoreKit framework.https://developer.apple.com/library/ios/documentation/StoreKit/Reference/SKRequestDelegate/Generally, you could find the conflicting method/selector by commenting out your version, writing a call to that selector on an instance typed as id (and arguments of type id), and then using command-double-click to pull up the header in another window.id thing = nil; [thing selectorToFind:thing];
Jun ’15
Physically Based Shading
The documentation and wwdc sessions suggest that physically based shading might now be supported in Scenekit using Model IO.The Scenekit classes themselves still do not have support for PBS material settings, so if the model io settings are retained after their converted to their scenekit counterparts they would not be adjustable.This would also mean that content configured using the visual editor would not have access to PBS.Can someone confirm this?
1
0
503
Jun ’15
SecKeyRawSign in secure enclave
Hi,Glad to hear that now iOS allows signing data inside the secure enclave, but documentation does not specify which exact curve is used (secp256r1, secp256k1 or Ed25519) and what signing method is used (Ed25519 has standard deterministic algorithm, others can use RFC6979 or random nonce). Does anyone have an idea what exact curve and nonce generation algorithm is used here?For my Bitcoin application I can only take advantage of this API if it allows using secp256k1 curve with RFC6979 (or otherwise determinstic) nonce. Also, it would be helpful to allow other operations in-enclave, such as multiplication (generally speaking, `privkey*A + b*G` where `A` and `b` are parameters). This is needed for more complex operations, such as blind signing (https://github.com/oleganza/bitcoin-papers/blob/master/BitcoinBlindSignatures.md).
0
0
1.2k
Jun ’15
Best practice for setting CFBundleVersion automatically
With the newest releases of iOS and iTunesConnect, Apple is more and more restrictive about what´s happening in your CFBundleVersion of your Extensions.I tried to fiddle around with Run Script Build Phases, such as this:#!/bin/sh INFOPLIST_EXT=${TARGET_BUILD_DIR}/${INFOPLIST_PATH} echo Extension writing to $INFOPLIST_EXT PLISTCMD=Set :CFBundleVersion $(git rev-list --all|wc -l) echo -n $INFOPLIST_EXT | xargs -0 /usr/libexec/PlistBuddy -c $PLISTCMDHowever, this seems to work for some types of Extensions (WatchKit), but for some others it doesn´t (Today Widget). In my cases, I seem to access the $TARGET_BUILD_DIR before there´s content in it. Using $BUILT_PRODUCTS_DIR delivers the same error.Extension writing to /Users/marc/Library/Developer/Xcode/DerivedData/MyApp-focpnqzzpnqsfyaqwwocwpujmhmh/Build/Intermediates/ArchiveIntermediates/MyApp/IntermediateBuildFilesPath/UninstalledProducts/TopNewsWidget.appex/Info.plist Set: Entry, :CFBundleVersion, Does Not Exist File Doesn't Exist, Will Create: /Users/m
6
0
7.2k
Jun ’15
Reply to watchOS 2b1 wiped Activity data
It's not watchOS 2, it's iOS 9.Reading the iOS 9 release notes reveals that loss of Health data is a possible side effect of installing the beta, and that to avoid this you should make an encrypted backup to iTunes (unencrypted backups to iTunes and backups to iCloud don't backup Health data).
Topic: App & System Services SubTopic: Core OS Tags:
Jun ’15
iOS 9 on iPad Air 2 drains battery like crazy
I'm finding that since i updated my (development) iPad Air 2 from 8.3 to iOS 9 Beta 1, its battery is draining like crazy. I unplugged with 100% charge last night, this morning it's alreadty dead again. It also constantly is really warm. Instruments shows blackboardd running at 20% CPU, the full time, and MobileMail running fairly high too.Mind you, this is not an ooh, i upgraded my only production-use device to a beta and now i'm complaining it's not perfect complaint, so hold back the usual snarky remarks about this. My concern is not only that this iPad is now unusable as a testing/development device, but that i'm actually worried about leaving it running like this at all, for what it might do to the CPU and the battery, long term. The only choice i'm seeing right now is powering it down completely and put it in a drawer until Beta 2 😟.
4
0
714
Jun ’15
Reply to App Review Time
If you're distributing an enterprise app, then it doesn't have to go through review so your question doesn't apply. But if by enterprise you just mean some arbitrary measure of developer size, no - it's a level playing field. An individual writing code on his laptop on the beach goes into the same queue as a company with hundreds of developers. That may not be true for the very biggest household names... companies like Facebook with deep OS integration probably do get special treatment. But the number of such companies is probably in the single digits.And @rromanchuk - I believe you are wrong about app reviews doing nothing. iOS users are much more willing to spend money and install new apps. They have an intrinsic trust that apps won't contain malware / spyware or mess up other apps on their devices. That is entirely thanks to Apple's hard line approach to app reviews. Long term that generates MUCH more revenue for developers. That is my experience at least. Even though there are comparable numbers
Replies
Boosts
Views
Activity
Jun ’15
ios 9 beta
I want to install preview of ios 9
Replies
1
Boosts
0
Views
179
Activity
Jun ’15
Can not run iOS 8 simulator in XCode 7
The error message isThe iOS 8.2 simulator runtime is not available.Unable to open liblaunch_sim.dylib. Try reinstalling Xcode or the simulator runtime.I've checked XCode preferencaes -> download tab and it seems that extra simulators can not be installed.
Replies
8
Boosts
0
Views
11k
Activity
Jun ’15
Reply to Using Xcode 7 for production apps
Thanks for the idea but I'd actually just like to stick with the current version of Swift for now until closer to iOS 9/Swift 2.0 release. From what I can see online this isn't possible - Swift version is tied to Xcode and you can't run an older version.
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Jun ’15
Reply to Can't download any downloads other than 10.11?
Same problem here. I managed to upgrade to 10.11 but cannot get the link to Xcode download or iOS 9 install. Dropped onto profile page too.
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Jun ’15
Reply to some method conflicts
A google search suggests the conflicting method is from the StoreKit framework.https://developer.apple.com/library/ios/documentation/StoreKit/Reference/SKRequestDelegate/Generally, you could find the conflicting method/selector by commenting out your version, writing a call to that selector on an instance typed as id (and arguments of type id), and then using command-double-click to pull up the header in another window.id thing = nil; [thing selectorToFind:thing];
Replies
Boosts
Views
Activity
Jun ’15
Physically Based Shading
The documentation and wwdc sessions suggest that physically based shading might now be supported in Scenekit using Model IO.The Scenekit classes themselves still do not have support for PBS material settings, so if the model io settings are retained after their converted to their scenekit counterparts they would not be adjustable.This would also mean that content configured using the visual editor would not have access to PBS.Can someone confirm this?
Replies
1
Boosts
0
Views
503
Activity
Jun ’15
SecKeyRawSign in secure enclave
Hi,Glad to hear that now iOS allows signing data inside the secure enclave, but documentation does not specify which exact curve is used (secp256r1, secp256k1 or Ed25519) and what signing method is used (Ed25519 has standard deterministic algorithm, others can use RFC6979 or random nonce). Does anyone have an idea what exact curve and nonce generation algorithm is used here?For my Bitcoin application I can only take advantage of this API if it allows using secp256k1 curve with RFC6979 (or otherwise determinstic) nonce. Also, it would be helpful to allow other operations in-enclave, such as multiplication (generally speaking, `privkey*A + b*G` where `A` and `b` are parameters). This is needed for more complex operations, such as blind signing (https://github.com/oleganza/bitcoin-papers/blob/master/BitcoinBlindSignatures.md).
Replies
0
Boosts
0
Views
1.2k
Activity
Jun ’15
Best practice for setting CFBundleVersion automatically
With the newest releases of iOS and iTunesConnect, Apple is more and more restrictive about what´s happening in your CFBundleVersion of your Extensions.I tried to fiddle around with Run Script Build Phases, such as this:#!/bin/sh INFOPLIST_EXT=${TARGET_BUILD_DIR}/${INFOPLIST_PATH} echo Extension writing to $INFOPLIST_EXT PLISTCMD=Set :CFBundleVersion $(git rev-list --all|wc -l) echo -n $INFOPLIST_EXT | xargs -0 /usr/libexec/PlistBuddy -c $PLISTCMDHowever, this seems to work for some types of Extensions (WatchKit), but for some others it doesn´t (Today Widget). In my cases, I seem to access the $TARGET_BUILD_DIR before there´s content in it. Using $BUILT_PRODUCTS_DIR delivers the same error.Extension writing to /Users/marc/Library/Developer/Xcode/DerivedData/MyApp-focpnqzzpnqsfyaqwwocwpujmhmh/Build/Intermediates/ArchiveIntermediates/MyApp/IntermediateBuildFilesPath/UninstalledProducts/TopNewsWidget.appex/Info.plist Set: Entry, :CFBundleVersion, Does Not Exist File Doesn't Exist, Will Create: /Users/m
Replies
6
Boosts
0
Views
7.2k
Activity
Jun ’15
Reply to Enterprise WiFi failing in 14E33b - WPA2 EAP-TLS
Another wifi connectivity issue confirmed for build 14E33b on WPA2 Enterprise. It will not authenticate. Same issue happens with iOS 9 as stated above. This is a pretty big issue.
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Jun ’15
Reply to watchOS 2b1 wiped Activity data
It's not watchOS 2, it's iOS 9.Reading the iOS 9 release notes reveals that loss of Health data is a possible side effect of installing the beta, and that to avoid this you should make an encrypted backup to iTunes (unencrypted backups to iTunes and backups to iCloud don't backup Health data).
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Jun ’15
iOS 9 on iPad Air 2 drains battery like crazy
I'm finding that since i updated my (development) iPad Air 2 from 8.3 to iOS 9 Beta 1, its battery is draining like crazy. I unplugged with 100% charge last night, this morning it's alreadty dead again. It also constantly is really warm. Instruments shows blackboardd running at 20% CPU, the full time, and MobileMail running fairly high too.Mind you, this is not an ooh, i upgraded my only production-use device to a beta and now i'm complaining it's not perfect complaint, so hold back the usual snarky remarks about this. My concern is not only that this iPad is now unusable as a testing/development device, but that i'm actually worried about leaving it running like this at all, for what it might do to the CPU and the battery, long term. The only choice i'm seeing right now is powering it down completely and put it in a drawer until Beta 2 😟.
Replies
4
Boosts
0
Views
714
Activity
Jun ’15
Configurator 2.0
Did you find how to install iOS 9 BETA with the new Configurator 2.0 ?
Replies
0
Boosts
0
Views
249
Activity
Jun ’15
Reply to http connections - App Transport Security
Maybe the certificate itself or one on the chain are a SHA-1 certificate? Google chrome doesn't support these certificates, even if isn't self signed, and maybe iOS 9 are doing it too.
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Jun ’15
Error creating archive applications ios
Before updated xcode, everything was fine, but now I get a lot of errors. These errors mean that I do not have certificates, but I check the Member Center, I have everything. Can anyone write a step by step what to do? It would have helped. Picture errors:http://i.stack.imgur.com/pQp2O.png
Replies
0
Boosts
0
Views
164
Activity
Jun ’15