Search results for

Visual Studio Maui IOS

105,670 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
493
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
697
Jun ’15