Skip to main content
Search titles, bodies, and author names
Found 12,053 posts across 1 forum.

Comparing NSTableView items — #1

Hi guys, Another question from me . So I have a NSTableView, and I am adding items to it by doing this: [code]- (void)addSnippetid)sender { TagSnippet *newSnippet = [TagSnip…
MacNN Software by iOliverC

Comparing NSTableView items — #2

for (i=0;i<[list count];i++) if ([[newSnippet title] isEqualToString:[[list objectAtIndex:i] title]]) [self showConfirmationDialog]; you should probably also make sure the two …
MacNN Software by Uncle Skeleton

signal handeling — #1

If I catch a signal and let my signal handeling method deal with it it executes in a thread seperate from the main tread, right? But what happends if a new signal is cathed before…
MacNN Software by geran

Weird Undo Bug — #1

Hey guys, I have been trying to figure out this undo bug I've been having recently, and thanks to FileMerge, I've found the bad code: code: if ([[NSUserDefaults standardUserDefa…
MacNN Software by iOliverC

Weird Undo Bug — #2

I'm not sure why this isn't working, but here are a couple of things to look at: first, verify that your text view is editable and does actually use undo. Also, I get the impress…
MacNN Software by smeger

Weird Undo Bug — #3

Quote: Originally posted by smeger: I'm not sure why this isn't working, but here are a couple of things to look at: first, verify that your text view is editable and d…
MacNN Software by smeger
mp.ls