Re: Lion: Strange issue in NSTableView

2011-11-30 Thread Florian Soenens
Hi Apparao, does the tableview use a custom cell? If so, i suggest you look into overriding - (int)hitTestForEvent:(NSEvent *)event inRect:(NSRect)cellFrame ofView:(NSView *)controlView Don't know if that will solve your particular issue but it's worth a try. Best, Florian. On 01 Dec 2011,

UIPickerView kind control in Mac OS X

2011-11-30 Thread Appa Rao Mulpuri
Hello List, I am working on implementation of UIPickerView kind control in Mac OS X. Based on the number of Components in the Picker, I have added NSTableview for each component, but the problem I am facing is Animation in Scrolling. Is there any way to add Animation support in NSTableView? -

Lion: Strange issue in NSTableView

2011-11-30 Thread Appa Rao Mulpuri
Hello List, I am observing the strange issue in NSTAbleView on Mac OS X 10.7. NStableView has the support like user can select multiple rows in sequence using mouse drag. Same code is working fine in Snow leopard, but couldn't in Lion. I had a look at http://developer.apple.com/library/mac/#re

Re: Grabbing at 60hz

2011-11-30 Thread Alex Zavatone
Hz od FPS? On Nov 30, 2011, at 2:27 PM, jesse wrote: > (Apologies if this is the wrong list, searching around it seems like this is > the list where AVFoundation is most discussed - please point me to the right > list if I'm in the wrong one!) > > Hello List, > > I'm hoping to grab from a we

Re: Index in only one section of UITableView

2011-11-30 Thread Sixten Otto
On Wed, Nov 30, 2011 at 7:59 PM, James West wrote: > Is it possible to override the default behavior of the UITableView index so > it only shows over the right side of a subsection of a table - scrolling with > it, etc? Yeah, that really isn't how the index works at all (even leaving out the pa

Grabbing at 60hz

2011-11-30 Thread jesse
(Apologies if this is the wrong list, searching around it seems like this is the list where AVFoundation is most discussed - please point me to the right list if I'm in the wrong one!) Hello List, I'm hoping to grab from a webcam at greater than 30hz. I purchased a Philips SPZ6500/27 for thi

Index in only one section of UITableView

2011-11-30 Thread James West
Hey folks - Is it possible to override the default behavior of the UITableView index so it only shows over the right side of a subsection of a table - scrolling with it, etc? I have a highly customized table with four or five cells in one section, and 70 in the other. I'd like to put an alpha

iOS Game developer help needed

2011-11-30 Thread April
I'm wondering if some one that's used cocos2d before can answer some sprite sheet questions. I attempted to use a sprite sheet for game buttons but every button has a touchable area equal to the size of the whole sheet___ Cocoa-dev mailing list (Cocoa

Re: Make CoreData clean itself up

2011-11-30 Thread Alex Kac
On Nov 30, 2011, at 2:39 PM, Jerry Krinock wrote: > > On 2011 Nov 30, at 12:09, Alex Kac wrote: > >> a cascade delete from the parent object and a nullify from the inverse > > that should work And it does…except when it doesn't. To put it in perspective we have a few hundred thousand users a

Re: Make CoreData clean itself up

2011-11-30 Thread Jerry Krinock
On 2011 Nov 30, at 12:09, Alex Kac wrote: > a cascade delete from the parent object and a nullify from the inverse that should work > If I open the database file just to check, I see that the entity object is > being referred to, but again it does not exist anymore. Do you mean that the value

Make CoreData clean itself up

2011-11-30 Thread Alex Kac
We have a Core Data model with relationships that in some very very rare cases we see a relationship to an object that no longer exists. That shouldn't happen, I think as the model is setup to have a cascade delete from the parent object and a nullify from the inverse. If I open the database fil

Re: How to force WebView to use a separate NSHTTPCookieStorage ?

2011-11-30 Thread Ben
On 30 Nov 2011, at 15:22, Keary Suska wrote: > On Nov 30, 2011, at 7:48 AM, Ben wrote: > >> >> On 30 Nov 2011, at 14:24, John Joyce wrote: >> >>> >>> On Nov 30, 2011, at 8:11 AM, Mike Abdullah wrote: >>> On 30 Nov 2011, at 12:00, Ben wrote: > I am writing an app which op

Re: Weird Core Data crash

2011-11-30 Thread Kyle Sluder
And of course I linked to out-of-date documentation. Here's a document that actually talks about the new concurrency support: http://developer.apple.com/library/mac/#releasenotes/DataManagement/RN-CoreData/_index.html --Kyle Sluder On Wed, Nov 30, 2011 at 7:56 AM, Kyle Sluder wrote: > If you'r

Re: Weird Core Data crash

2011-11-30 Thread Kyle Sluder
If you're targeting 10.7, you can use the new NSManagedObjectContext concurrency support: http://developer.apple.com/library/ios/#documentation/cocoa/conceptual/coredata/Articles/cdConcurrency.html#//apple_ref/doc/uid/TP40003385-SW1 --Kyle Sluder On Wed, Nov 30, 2011 at 7:41 AM, Andrew Kinnie w

Re: Weird Core Data crash

2011-11-30 Thread Andrew Kinnie
OK. Thanks. (I'd have responded sooner but I was driving all day) I will look into this. It does appear that I was not being precise enough with the MOC on potential multiple threads. So we should probably have a moc on the main thread (for queries, etc) and have transient background thread

Re: How to force WebView to use a separate NSHTTPCookieStorage ?

2011-11-30 Thread Keary Suska
On Nov 30, 2011, at 7:48 AM, Ben wrote: > > On 30 Nov 2011, at 14:24, John Joyce wrote: > >> >> On Nov 30, 2011, at 8:11 AM, Mike Abdullah wrote: >> >>> >>> On 30 Nov 2011, at 12:00, Ben wrote: >>> I am writing an app which opens up multiple WebView's of the same web site. The pro

Re: How to force WebView to use a separate NSHTTPCookieStorage ?

2011-11-30 Thread Ben
On 30 Nov 2011, at 14:24, John Joyce wrote: > > On Nov 30, 2011, at 8:11 AM, Mike Abdullah wrote: > >> >> On 30 Nov 2011, at 12:00, Ben wrote: >> >>> I am writing an app which opens up multiple WebView's of the same web site. >>> The problem I'm having is that the website detects that I alre

Re: How to force WebView to use a separate NSHTTPCookieStorage ?

2011-11-30 Thread John Joyce
On Nov 30, 2011, at 8:11 AM, Mike Abdullah wrote: > > On 30 Nov 2011, at 12:00, Ben wrote: > >> I am writing an app which opens up multiple WebView's of the same web site. >> The problem I'm having is that the website detects that I already have a >> page open and closes the previously opened

Re: How to force WebView to use a separate NSHTTPCookieStorage ?

2011-11-30 Thread Mike Abdullah
On 30 Nov 2011, at 12:00, Ben wrote: > I am writing an app which opens up multiple WebView's of the same web site. > The problem I'm having is that the website detects that I already have a page > open and closes the previously opened page. > > So I'm presuming that the method by which it is

How to force WebView to use a separate NSHTTPCookieStorage ?

2011-11-30 Thread Ben
I am writing an app which opens up multiple WebView's of the same web site. The problem I'm having is that the website detects that I already have a page open and closes the previously opened page. So I'm presuming that the method by which it is detecting identical pages is via cookies, and if