Webview cache location

2012-04-13 Thread Koen van der Drift
I am using a webview in my app, and am wondering where the cache is stored? Is there a specific location for each app, or is it shared with the Safari cache? Thanks, - Koen. ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post adm

Re: Webview cache location

2012-04-13 Thread Alex Zavatone
This might help: http://stackoverflow.com/questions/1348696/how-to-cache-content-in-uiwebview-for-faster-loading-later-on On Apr 13, 2012, at 10:15 AM, Koen van der Drift wrote: > I am using a webview in my app, and am wondering where the cache is > stored? Is there a specific location for each

Re: Webview cache location

2012-04-13 Thread Koen van der Drift
Thanks for the link. My app is OSX, so will see if it is applicable. - Koen. On Fri, Apr 13, 2012 at 10:19 AM, Alex Zavatone wrote: > This might help: > > http://stackoverflow.com/questions/1348696/how-to-cache-content-in-uiwebview-for-faster-loading-later-on > > On Apr 13, 2012, at 10:15 AM,

Re: Webview cache location

2012-04-13 Thread Koen van der Drift
Unfortunately that link doesn't seem applicable to my situation. I'm just trying to find the location on my HD, so I can empty it for debugging purposes. - Koen. On Fri, Apr 13, 2012 at 10:37 AM, Koen van der Drift wrote: > Thanks for the link. My app is OSX, so will see if it is applicable.

Re: Webview cache location

2012-04-13 Thread Nick Zitzmann
On Apr 13, 2012, at 8:49 AM, Koen van der Drift wrote: > Unfortunately that link doesn't seem applicable to my situation. I'm > just trying to find the location on my HD, so I can empty it for > debugging purposes. The cache database is stored at ~/Library/Caches/[your app bundle identifier he

Re: NSAffineTransform on iOS

2012-04-13 Thread Matt Neuburg
On Mon, 09 Apr 2012 15:55:45 +0100, Pascal Harris <45rpmli...@googlemail.com> said: > >And are there any books that you'd recommend that cover these kind of issues, >books to assist a Mac OS X developer write for iOS? Yes, see my .sig below for one. :) Since I too came to iOS programming from Ma

Re: How to use AEKeyword for sending mail from the application?

2012-04-13 Thread Matt Neuburg
On Tue, 10 Apr 2012 19:49:25 +0530, Yeduguri Reddy said: >But I do not know which AEKeyword has to be used to set Recipient address in >the TO Field of the mail. >Kindly help me with this. Do it in AppleScript and capture the Apple event with AEDebug. Now you can analyze the Apple event and co

Re: UINavigationBar appearance not updating

2012-04-13 Thread Matt Neuburg
On Wed, 11 Apr 2012 22:24:45 +0800, Roland King said: > >To do it I'm using the UIAppearance protocol, here's the method which does the >work. > >-(void)updateTintsForICloud >{ > BOOL usingICloud = [ [ HIPSettings sharedSettings ] usingICloud ]; > [ [ UINavigationBar appearance ] set

Re: AVAssetWriterInputPixelBufferAdaptor on IOS attempting to write images to a video

2012-04-13 Thread Jan E. Schotsman
On Apr 13, 2012, at 4:49 PM, Damien Cooke wrote: //write it out [adaptor appendPixelBuffer:pixelBuffer withPresentationTime:CMTimeMake(2, 60)]; It crashes here reporting *** Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: '*** - [AVAssetWriterInpu

Bookmark alias files v. Finder alias files

2012-04-13 Thread Shane Stanley
I'm creating alias files using bookmark data, as in the docs: NSData *bookmarkData = [url bookmarkDataWithOptions:NSURLBookmarkCreationSuitableForBookmarkFile includingResourceValuesForKeys:nil relativeToURL:nil e

Re: Webview cache location

2012-04-13 Thread Gerriet M. Denkmann
On 14 Apr 2012, at 02:00, Nick Zitzmann wrote: > The cache database is stored at ~/Library/Caches/[your app bundle identifier > here]/Cache.db assuming it's not sandboxed. I just looked at ~/Library/Caches/[my app bundle identifier here]/ which contains com.apple.opencl/com.apple.ocl.64.data

Re: Webview cache location

2012-04-13 Thread Nick Zitzmann
On Apr 13, 2012, at 6:01 PM, Gerriet M. Denkmann wrote: > I just looked at ~/Library/Caches/[my app bundle identifier here]/ > > which contains com.apple.opencl/com.apple.ocl.64.data + com.apple.ocl.64.maps. > > These things exist even for apps not using Webview at all. > > So: what goes into

Re: Webview cache location

2012-04-13 Thread Gerriet M. Denkmann
On 14 Apr 2012, at 08:08, Nick Zitzmann wrote: > On Apr 13, 2012, at 6:01 PM, Gerriet M. Denkmann wrote: > >> I just looked at ~/Library/Caches/[my app bundle identifier here]/ >> >> which contains com.apple.opencl/com.apple.ocl.64.data + >> com.apple.ocl.64.maps. >> >> These things exist eve

Opening a gap in NSTableView during drag and drop

2012-04-13 Thread Andrew Madsen
I've got a simple, single-column, view-based NSTableView with items in it that can be dragged to reorder them. During drag and drop, I'd like to make it so that a gap for the item-to-be-dropped opens up at the location under the mouse. GarageBand does something like this when you drag to reorder