On Jul 22, 2010, at 12:16, Charlie Dickman wrote:
> When trying to use, instead,
>
> for (id _id in _array) {
> }
>
> how, without reverting to effectively using an enumerator as in
>
> id theID = nil;
> for (id _id in _array) {
> .
> .
> .
> if (condition) {
> theID = _id;
> break;
> }
> .
> .
> .
> if (nil != theID) {
> .
> .
> .
> }
id _id;
for (_id in array) {
}
if (_id)
{
}
_______________________________________________
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]