This is as simple as it gets...

textView = [[NSTextView alloc] initWithFrame:NSMakeRect(0, 0, 400, 300)];

// [textView frame] is {0, 0, 400, 300}

[textView setFrame:NSMakeRect(100, 100, 500, 400)];

// [textView frame] is {100, 100, 500, 300}

[textView setFrame:NSMakeRect(100, 100, 500, 400)];

// [textView frame] is {100, 100, 500, 400}


What gives?


--
Seth Willits



_______________________________________________

Cocoa-dev mailing list (Cocoa-dev@lists.apple.com)

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 arch...@mail-archive.com

Reply via email to