我正在为可拖动对象编写类。
平移完成后,我想使用块委派它。它工作正常,但是在使用@protocol 时我应该如何设置@optional 之类的东西?因为如果我不调用 myObject.didEndPanning 应用程序崩溃。
// MyClass.h
#import <Foundation/Foundation.h>
typedef void (^DelegateBlock)(void);
@interface AHDraggableObject : UIView
- (id)initDragableView:(UIView *)view inView:(UIView *)parentView withBorderOffset:(int)offset;
@property (nonatomic, strong) UIView *holder;
@property (nonatomic, weak) DelegateBlock didEndPanning;
@end
// MyClass.m
- (void)handlePanning:(UIPanGestureRecognizer *)sender
{
CGPoint translation = [sender translationInView:_parentView];
sender.view.center = CGPointMake(sender.view.center.x + translation.x, sender.view.center.y + translation.y);
[sender setTranslation:CGPointMake(0, 0) inView:_parentView];
[self checkBondaries:sender withOffset:_offset inView:_parentView];
// end of pan - invoke event
if (sender.state == UIGestureRecognizerStateEnded)
{
_didEndPanning();
}
}
称呼
//ViewController.m
-(void)viewDidLoad {
_drag = [[MRShape alloc] initDragableView:_testImageView inView:self.view withBorderOffset:40];
_drag.didEndPanning = ^
{
// if didEndPanning call is missing, app crash !
};
}