91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

IPhone開發文檔經典語句

發布時間:2020-07-27 02:18:31 來源:網絡 閱讀:354 作者:NetworkAD 欄目:開發技術

1:When a touch occurs inside a specific view, the system sends an event object with the touch information directly to that view for handling. However, if the view does not handle a particular touch event, it can pass the event object along to its superview. If the superview does not handle the event, it passes the event object to its superview, and so on up the responder chain


測試:

- (void)viewDidLoad
{
    [super viewDidLoad];
    
    UIView * view = [[UIView alloc]initWithFrame:CGRectMake(0, 0, 320, 480)];
    view.backgroundColor = [UIColor blueColor];
    
    UITapGestureRecognizer * tapGesture = [[UITapGestureRecognizer alloc]initWithTarget:self action:@selector(viewClick:)];
    
    [view addGestureRecognizer:tapGesture];
    
    UIView * view2 = [[UIView alloc]initWithFrame:CGRectMake(0, 0, 100, 100)];
    view2.center = CGPointMake(self.view.frame.size.width/2.0, self.view.frame.size.height/2.0);
    view2.backgroundColor = [UIColor blackColor];
    [self.view addSubview:view];
    
    
    UIButton * button = [[UIButton alloc]initWithFrame:CGRectMake(0, 0, 60, 50)];
    button.backgroundColor = [UIColor redColor];
    [button addTarget:self action:@selector(buttonClick) forControlEvents:UIControlEventTouchUpInside];
    button.center = CGPointMake(self.view.frame.size.width/2.0, self.view.frame.size.height/2.0);
    [view addSubview:button];
    [view addSubview:view2];
}

- (void)buttonClick
{
    NSLog(@"buttonClick");
}

- (void)viewClick:(UITapGestureRecognizer *)tap
{
    int red =arc4random()%255;
    int green = arc4random()%255;
    int blue = arc4random()%255;
    NSLog(@"%d %d %d",red,green,blue);
    tap.view.backgroundColor = [UIColor colorWithRed:red/255.0 green:green/255.0 blue:blue/255.0 alpha:1];
}

測試發現在view2上發生點擊事件,由于view2并不響應該事件,于是將事件傳遞給它的父視圖,顏色發生改變,但是該點擊事件并不會通過view2傳遞給button,所以事件傳遞,僅傳遞給它的父視圖,也就是[superview addsubview:subview]中得superview



向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

吴忠市| 蓝山县| 边坝县| 航空| 盐池县| 瑞丽市| 泰和县| 景德镇市| 镇沅| 梁平县| 临海市| 吴旗县| 将乐县| 疏勒县| 德化县| 饶平县| 娱乐| 宣恩县| 教育| 家居| 泰来县| 孟州市| 双桥区| 乐至县| 河西区| 和林格尔县| 上杭县| 修武县| 阿拉善左旗| 海口市| 茂名市| 屏山县| 峡江县| 彩票| 红河县| 合江县| 宿迁市| 鸡西市| 英德市| 江城| 涿鹿县|