Checking One Array Against Another
Checking One Array Against Another
- Subject: Checking One Array Against Another
- From: Pierce Freeman <email@hidden>
- Date: Fri, 28 Nov 2008 20:25:05 -0800
- Thread-topic: Checking One Array Against Another
Hi everyone.
I am attempting to check one array's contents against another's, but so far
it hasn't been working. In the actual application, I am checking the
current open applications against an "okay" application list, and just
thought of another problem: If the user doesn't have an application open
that is on the list, it will think the reverse. Some example code (with
different variables) is below:
[CODE]
for (int arraySort = 0; arraySort < [arrayInfo count]; arraySort++)
{
for (int arrayNewSort = 0; arrayNewSort < [arrayNewInfo
count]; arrayNewSort++)
{
if ([ arrayInfo objectAtIndex:arraySort] ==
[arrayNewInfo objectAtIndex:arrayNewSort])
{
some++;
}
}
}
If (some == [arrayNewInfo count]
{
NSLog(@"The user has only the okay applications open");
}
[END CODE]
Thanks for any help.
Sincerely,
Pierce F.
--
Pierce Freeman
email@hidden
_______________________________________________
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