1

シンプルなコード..

ViewController.h

#import <UIKit/UIKit.h>

@interface ViewController : UIViewController
- (IBAction)dragout:(id)sender;

@end

ViewController.m

#import "ViewController.h"

@interface ViewController ()

@end

@implementation ViewController

- (void)viewDidLoad
{
    [super viewDidLoad];
    // Do any additional setup after loading the view, typically from a nib.
}

- (void)didReceiveMemoryWarning
{
    [super didReceiveMemoryWarning];
    // Dispose of any resources that can be recreated.
}

- (IBAction)dragout:(id)sender {
    NSLog(@"-----");
}
@end

ストーリーボードには、テキスト「ボタン」に収まるサイズのボタンが1つあります。「sent event:touch drag outside」を「dragout」IBActionにリンクします。

ボタンの内側に触れて指をボタンの外側にドラッグすると、「ドラッグアウト」IBActionを呼び出すためにボタンサイズ以上に移動する必要があります。幅と高さのほぼ 3 倍のサイズ。なぜこれが起こるのですか?読むためのThx。

4

0 に答える 0