You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
int e = [[[[arrayPieces objectAtIndex:l] edges] objectAtIndex:1] intValue];
there are the following errors:
1 - Multiple methods named 'edges' found with mismatched result, parameter type or attributes
2 - Bad receiver type 'UIRectEdge' (aka 'enum UIRectEdge')
Same errors at line:
int e = [[[[arrayPieces lastObject] edges] objectAtIndex:2] intValue];
The text was updated successfully, but these errors were encountered:
"edges" was added to uikit in iOS7. Just search every instance of "edges" in the project and replace it with something like "my_edges" and it will work in Xcode 5/iOS7.
In PuzzleController.m, at line:
int e = [[[[arrayPieces objectAtIndex:l] edges] objectAtIndex:1] intValue];
there are the following errors:
1 - Multiple methods named 'edges' found with mismatched result, parameter type or attributes
2 - Bad receiver type 'UIRectEdge' (aka 'enum UIRectEdge')
Same errors at line:
int e = [[[[arrayPieces lastObject] edges] objectAtIndex:2] intValue];
The text was updated successfully, but these errors were encountered: