I was wondering if I could search through an NSMutableArray to find an object. Then if that object fits that that description I could display its information. Like
if ([items hasObject: itemSearchedFor])
{
[textField setStringValue:itemSearchedFor.name];
}
items is the NSMutableArray.
Thank You in advance.
if ([items hasObject: itemSearchedFor])
{
[textField setStringValue:itemSearchedFor.name];
}
items is the NSMutableArray.
Thank You in advance.
