Re: access multiple NSTextFields as an array?
Re: access multiple NSTextFields as an array?
- Subject: Re: access multiple NSTextFields as an array?
- From: Leonardo <email@hidden>
- Date: Tue, 21 Dec 2010 16:11:32 +0100
- Thread-topic: access multiple NSTextFields as an array?
You can quickly iterate (and read) the array that way
for(NSTextField* aField in fieldsArray){
[aField doSomething];
}
So you don't need to count the items and iterate.
Regards
-- Leonardo
_______________________________________________
Cocoa-dev mailing list (email@hidden)
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:
This email sent to email@hidden