Re: IBOutlet getting messed up in the runtime

2009-11-06 Thread Benjámin Salánki
at happens if you turn on NSZombieEnabled? 2009/11/5 Benjámin Salánki : Disregarding that one sentence i believe my problem is not private api related. Basically i have a text field in a nib that during runtime disappears (i can't describe it better) but never gets dealloced. Plus checking agains

NSURLCredential and UTF-8 username

2010-07-15 Thread Benjámin Salánki
Hi List, I am having problems with NSURLCredential and that the username and password are apparently sent in ISO Latin 1 encoding. At least the guys on the server development side are complaining this is the case. I did not find any information on how the credential is encoded or if it is pos

setting the searchResultsTableView of a UISearchDisplayController to grouped style

2010-01-18 Thread Benjámin Salánki
Hey everyone! I've been trying to use a UISearchDisplayController hooked up in IB with my UITableView and everything works fine except for the fact that I need the resulting table view to be of the UITableViewStyleGrouped style, which I can not currently achieve. Any ideas how to go on about it

mouse entered/exited in nscollectionviewitem's view

2009-07-23 Thread Benjámin Salánki
Hi there, I hope someone can help me with this. I have an NSCollectionView set up in IB with a connected NSCollectionViewItem and its View prototype. What I want to do is draw a different colored background for a view in the collection when the user mouses over it. I tried to set it up us

Re: mouse entered/exited in nscollectionviewitem's view

2009-07-25 Thread Benjámin Salánki
On Jul 24, 2009, at 3:23 PM, Keith Duncan wrote: the setup code only gets called once and then none of the actually displayed views in the collection handle any of my intended mouse tracking. That's probably because your subclass of NSCollectionViewItem isn't getting created for each ite

Re: mouse entered/exited in nscollectionviewitem's view

2009-07-25 Thread Benjámin Salánki
hm, a quick answer to my own question: inserting [self performSelector:@selector(updateTrackingAreas) withObject:nil afterDelay:0.01]; into scrollWheel: seems to fix my problem. Ben On Jul 24, 2009, at 3:23 PM, Keith Duncan wrote: the setup code only gets called once and then none of the a

NSSplitView autosave troubles

2009-07-28 Thread Benjámin Salánki
Dear list, please help me, because this is driving me crazy. I have a simple window set up in IB which contains only an autosized NSSplitView as its content. I add an autosave name for the splitview in IB. Go to Xcode, build and run, everything's fine. Quit the app, relaunch, and my window

Re: NSSplitView autosave troubles

2009-07-28 Thread Benjámin Salánki
Yes I have tried that, to no avail. Sent from my iPhone On 2009.07.29., at 3:46, Graham Cox wrote: On 29/07/2009, at 10:50 AM, Benjámin Salánki wrote: please help me, because this is driving me crazy. I have a simple window set up in IB which contains only an autosized NSSplitView as

[NSImageView animator] - will this animate setImage: ?

2008-12-30 Thread Benjámin Salánki
Hi all, I was playing around with core animation and was wondering if sending animator to a view, specifically an NSImageView, will it only manage animation of bounds and size and rotation changes or can it too be used for changing the contents of the NSImageView? I am trying to animate t

How to find out if a CAAnimation has ended

2009-02-22 Thread Benjámin Salánki
Hi there, I have an application which uses CAAnimation. It basically moves drops (moves down the y axis) CALayers (in pairs which move independently from each other) when a key is pressed. I need to be able to determine when the animation has stopped to be able to proceed according to the

NSNetService won't resolve

2008-10-31 Thread Benjámin Salánki
Hi all, I have an NSNetService enabled app that acts as both the client and the server on the same machine. My problem is that once I register the service I create and I want to set up the connection the aNetService returned has an empty array for the addresses in - (void)netServiceBrowse

Re: NSNetService won't resolve

2008-11-02 Thread Benjámin Salánki
And obvious it was. Thanks! Ben On 2008.11.03., at 3:31, Marc Krochmal <[EMAIL PROTECTED]> wrote: Hi Benjámin, On Oct 31, 2008, at 10:37 AM, Benjámin Salánki wrote: Hi all, I have an NSNetService enabled app that acts as both the client and the server on the same machine. My prob

embedding an NSCollectionView in another NSCollectionView -> Binding?

2008-11-23 Thread Benjámin Salánki
Hey everyone, I was trying to embed an NSCollectionView in another NSCollectionView and I am having trouble with the bindings. The main NSCollectionView's content is bound to an NSArrayController and I wanted to bind the embeded NSCollectionView's content to Main Collection View Item's re