I have two NSMutableArray
s with UIImageView
s in it. I am wondering how to check if the frames of the UIImageView
s are equal to the frames of the other array in Objective-C. Is there a function for this?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
||||
Assuming arrays are the same length and are called
|
|||||||||
|
[array1 isEqualToArray:array2]
in an if statement. But I found that some properties of the arrays are different from each other . – Steven Jul 11 at 16:14