2013-01-02 54 views
0

我在屏幕上有兩個視圖(A和B)。每個視圖都包含TouchImageView。當我將A視圖中的圖像拖動到B時,我想在B視圖上看起來不像。但圖像看起來像A和B的視圖。 B怎麼可以忽略?如何在TouchImageView在視圖中拖動時不參與其他視圖?


這裏是touchimageview源代碼 - TouchImageView source code

UIView *view = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 300, 300)]; 
    TouchImageView *touch = [[TouchImageView alloc] initWithFrame:CGRectMake(0, 0, 100, 100)]; 
    touch.image = [UIImage imageWithContentsOfFile: [[NSBundle mainBundle] pathForResource:@"57" ofType:@"png"]]; 
    touch.userInteractionEnabled=TRUE; 
    [view addSubview:touch]; 
    [self.view addSubview:view]; 

我想拖圖像,只查看在cordinate(0,0,300,300)。

回答

0
[view setClipsToBounds:YES]; 

當我添加此代碼時,我的問題得到解決,並且圖像在沒有視圖區域時看不到。

相關問題