I've posted the source to an app I'm working on. If someone can take a look and tell my why my tableview is not working with my array, it would be of great help.

Source:
http://novisdesign.net/Labs/Alien%20Notes.zip

-Gabe

Your first problem is that launching the app and pressing "New Note" creates an infinite recursion:

- (NSString *) title
{
        return [self title];
}
- (void) setTitle: (NSString *)newTitle
{
        title = newTitle;
}

So calling [blah title] causes it to cause [blah [blah title]] and [blah [blah [blah title]]], and infinitum.

Once that bug is fixed, "New Note" adds notes.

Can you be more specific about what is not working properly?

-Brent


_______________________________________________

Cocoa-dev mailing list ([email protected])

Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com

Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/cocoa-dev/archive%40mail-archive.com

This email sent to [EMAIL PROTECTED]

Reply via email to