0

ドラッグ可能なオブジェクトのクラスを書いています。

パンニングが終了したら、ブロックを使用して委任したいと思います。正常に動作していますが、@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 !
    };
}
4

1 に答える 1