2011-09-20 63 views
0

我subclassed TTTableMessageItem顯示用戶響應,並且我想添加用戶頭像圖像上的點擊事件(我知道它是TTTableMessageItemCell中的TTImageView)。如何 ?TTImageView有點擊事件嗎?

回答

0

我做出來如下:

-(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event { 

    UITouch *touch = [touches anyObject]; 

    if ([touch view] == myImageView) 
    { 
     // do process 
    } 

} 
+0

但似乎有時與UIButton點擊事件衝突... –

0

您可能會發現更容易簡單的添加手勢識別器到視圖 - touchesBegan肯定是可以接受的,但手勢識別器是有點簡單,可能更適合於點擊檢測事件。