mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-12-23 22:55:00 +00:00
Fix type comparison warnings
This commit is contained in:
@@ -301,7 +301,7 @@ typedef NS_ENUM(NSInteger, BITImageAnnotationViewControllerInteractionMode) {
|
||||
BITImageAnnotation *candidate = nil;
|
||||
BOOL validView = YES;
|
||||
|
||||
for ( int i = 0; i<gestureRecognizer.numberOfTouches; i++){
|
||||
for (uint i = 0; i < gestureRecognizer.numberOfTouches; i++){
|
||||
BITImageAnnotation *newCandidate = (BITImageAnnotation *)[self.view hitTest:[gestureRecognizer locationOfTouch:i inView:self.view] withEvent:nil];
|
||||
|
||||
if (![newCandidate isKindOfClass:[BITImageAnnotation class]]){
|
||||
|
||||
Reference in New Issue
Block a user