Can anyone from apple provide the spline formulation that is used in the CIToneCurve filter?The documentation says that a spline is passed thru the points you give it, but thereare a lot of spline types in the world, and they all can yield different shapes thru the same set of points.
Selecting any option will automatically load the page
Post
Replies
Boosts
Views
Activity
So we are messing w/ the new WKWebView, and remote caching of images (e.g. let's say loaded from an Amazon S3 bucket)seems to be very weak. It seems like less than 5% of image data pulls are cached. So they are continually being downloadedfrom the network, causing huge network traffic as we run our app. Nomatter what settings we use to try to increase the cache size, results seem the same.You can see this if you go into Safari Developer mode and monitor network traffic. The "Cached" column is mosty NO.I put a link to a snapshot from the network http traffic analyzer in safari devhttp://diffent.com/cacheStatusWK.jpgyou see most of the files are about the same size but few are cached...and this is a pagethat had at least some items cachedthis is after running the app for a whilewe tried setting NSURLCache, but it seems to have no effect in WKWebVIew, nomatter how large we make itNSURLCache* sharedCache = [[NSURLCache alloc] initWithMemoryCapacity:cacheSizeMemory diskCapacity:cacheSizeDisk diskPath:@"nsurlcache"];[NSURLCache setSharedURLCache:sharedCache];clues to fix? wait for ios10?
i repeatedly am getting this message for 1 account when trying to upload to the app store from xcodei tried to delete the account and re-login, and tried xcode7.3 and xcode8i am able to log in to developer.apple.com and itunesconnect.apple.com with this accountand i am able to log in to xcode with a different accountthe account seems up to date (contracts accepted, etc)any one have any clues as to what is going on?
We are in an app review loop trying to get an in-app purchase approved with this message (below)However, we did what they said and resubmitted a binary (essentially the same binary we submitted before but witha new build number), but then the in-app purchase is rejected for the same reason, with no additional explanation.Is there a way to escalate this and talk to someone to figure what is going on? This is for a pre-existing app in the app store, not a new app.In-App Purchase - New Business ModelWe have begun the review of your in-app purchase but aren't able to continue because your submitted in-app purchases indicates a change of business model for your app. Therefore, we need to verify the implementation of your submitted in-app purchases in the app to ensure your app, and its in-app purchases, are in compliance with the App Store Review Guidelines.Next StepsPlease upload a new binary for review and resubmit your in-app purchase(s) with the binary so that we can continue the review.
has any one seen this and/or know the solution?what could cause a pause event to get triggered? we can trap when the event gets caught in the safari debuggerbut unable to see what is causing it. like who is sending the event? is there any way to trace the sending of media events in safari? we get random pause events recv'd by our video tag, a few seconds after video start.seems to be on videos with audio playing Only, ios10.3 and upokay on ios10.2UIWebView implementation
getting tons of error messages like this using OpenDiff / Xcode when trying to diff Swift files2019-05-21 19:12:19.242 FileMerge[16901:237988] Couldn't load language spec for '<DVTSourceCodeLanguage:0x7fc3482ddf30:'Xcode.SourceCodeLanguage.Swift'>'xcode 10.1any solution?
aside from the beta-test type of promo codes, is there any way to have "reduced price" promo codes that are used via the Redeem feature in the app store, for either full apps or in-app purchases (possibly subscriptions)?
hi, i just tried to submit a mac catalyst app to the app store
and it gave this msg:
Unable to Submit for Review
The items below are required to start the review process:
A 1024 x 1024 pixel app icon for your app must be added to the asset catalog in Xcode.
However, my asset catalog has that icon. App is not a new app, it has been submitted before.
Any ideas what is causing this?
get infinite spinner when going there
note to apple: somebody should look into this.
as i am typing in a Terminal window on Catalina (as all developers must do), i must be accidentally hitting some secret pattern of keys, because yellow man page windows keep popping up to do a "man" command on whatever word i am typing.
how do we shut this terrible feature off?
Can anyone clarify which devices or chips the so-called "neural engine" can be used for machine learning model Training? As opposed to inference (or prediction)? And can external libraries such as Tensorflow (perhaps via the browser-based javascript library) access the neural engine in any manner for training or inference?
this doc from apple says that dual cam (simultaneous) capture is available on newer iphones but the doc is pre iphone12 era. does any one know if any or all of the iphone12 series of phones also allow this?
https://developer.apple.com/videos/play/wwdc2019/249/
does anyone know if the mac app store ranking system has changed recently for mac apps? my mac apps have dropped like a proverbial rock in the ranking system near the end of last week. has any one done any experiments to see if mac app store rankings are higher if you recompile your apps for M1 apple silicon systems?
any one else notice that the simulator pinch zoom is partly broken in xcode 12.1? It works for a while then fails, and you have to restart the simulator.
we used to use code such as this to make sure the keyboard comes up in a desired orientation
[[UIApplication sharedApplication] setStatusBarOrientation:UIInterfaceOrientationLandscapeRight animated:NO];
however, apple has no-op'd setStatusBarOrientation:
it still can be called, but it gives a warning that it no longer does anything as of iOS13
does anyone know the recommended replacement path for this feature?