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?
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?
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.