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.
Post
Replies
Boosts
Views
Activity
When you are checking in an Xcode-based project into git (pushed up to github), shouldyou check in the .DS_Store files that appear? Or do these get re-generatedautomatically by OSX if they are not there (say, when you git clone a project?)
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?
any way to find out why a build is stuck Processing so long?log files, etc?apple servers too busy?time estimate of completion?
hi all,it seems that after a user migrates his phone contents to a new device, ourapp does not have cam permissions, but it also does not re-ask for those permissions.has anyone seen something like this, know a workaround?reinstalling app works, but is not an ideal solution.
above error recv'd when trying to upload a mac catalyst app to app store connectfrom xcodeapp seemed to sign ok for distribution (manually) when it Archive'd in xcodeany ideas? i used a signing cert of type Apple Distributionare there separate distribution profiles for mac "catalyst" apps versusordinary mac apps on the mac app store?i wonder why they would do this?
I am able to create a new macOS app ID in the developer portal, but this new app IDdoesn't show up as an option in the pulldown menu when trying to create a new app inthe itunes connect portal (or app store connect whatever it is called now).In fact I have 3 macOS app IDs created in the developer portal, and none show upas available options to create a new mac app entry in the app store connect. Ithas a link to "create a new mac app ID" and when I go there and create yet another one,that one doesnt show either. So it seems that adding a new mac app to app store connect is broken at the moment?Any hints from Apple here what is going on?
Apparently there is a feature to allow your new Mac app to be in 'pre-order' mode on the Mac App Store, but I can't find any apps in that state in the app store currently. How do normal non-developers find these pre-order apps?
Even though I have shut off optimization, when I try to profile a Mac Catalyst app (running on Mac) with Instruments, insteadof seeing my ObjC source code in the Instruments output, I see assembler listings, even thoughI have optimization Off for the project and .m file. Any hints to show source-level profiling?Xcode 11.3
if anyone from apple is monitoring:the ability to create distribution profiles for mac catalyst app IDs seems to be broken againwhen you go to create a mac distribution profile, the maccatalyst.* app IDs don't show up neither my old maccatalyst.* profile nor my new one shows uphowever, i was able to create an entry in appstoreconnect for the new maccatalyst.* profile,so the "app store connect" side of things seems to know about the maccatalyst.* app ID
does anyone know an in-app way we can intercept the incoming push notifications when app is backgrounded or inactiveand adjust the badge count that gets put on the app icon?the situation is that we have a notification service sending us notifications, but it is only taking into account the unreadcount from itself, and we want to take into account "other sources of un-read" data in our app when we put up that app badge.it is fixable when we put the app back into the background after using it for a while, but once app is in background,the notification service is overwriting out carefully constructed badge integer when a push comes in.i found this doc about employing an app extension, but it seems kind of complicated:https://developer.apple.com/documentation/usernotifications/modifying_content_in_newly_delivered_notifications?language=objc