K3fMapContainerDelegate
Objective-C
@protocol K3fMapContainerDelegate <NSObject>
Swift
protocol K3fMapContainerDelegate : NSObjectProtocol
TouchEvent Delegate
-
Touch 시작시 발생
Declaration
Objective-C
- (void)touchesBegan:(NSSet *_Nonnull)touches;
Swift
optional func touchesBegan(_ touches: Set<AnyHashable>)
-
Touch가 끝났을 때 발생
Declaration
Objective-C
- (void)touchesEnded:(NSSet *_Nonnull)touches;
Swift
optional func touchesEnded(_ touches: Set<AnyHashable>)
-
Touch가 취소되었을 때 발생
Declaration
Objective-C
- (void)touchesCancelled:(NSSet *_Nonnull)touches;
Swift
optional func touchesCancelled(_ touches: Set<AnyHashable>)
-
Touch 움직일 때 발생
Declaration
Objective-C
- (void)touchesMoved:(NSSet *_Nonnull)touches;
Swift
optional func touchesMoved(_ touches: Set<AnyHashable>)