2011-04-29 98 views
0

這裏是我的代碼:如何處理觸摸事件子視圖

MAINVIEW:

NSArray *btArray = [NSArray arrayWithObjects:@"1",@"1",@"1",@"1",@"1",nil]; 
ButtonBarComponent *bottomeButtonBar = [[ButtonBarComponent alloc] initButtonBarComponentWithButtonArray:btArray]; 
bottomeButtonBar.frame = CGRectMake(0, 340, 320, 200); 
[self.view addSubview:bottomeButtonBar]; 

子視圖:

-(id)initButtonBarComponentWithButtonArray:(NSArray *)btArray { 
self = [[UIView alloc] initWithFrame:CGRectMake(0, 340, 320, 200)]; 
self.backgroundColor = [UIColor whiteColor]; 
} 

但爲什麼我不能運行觸摸事件中的代碼?

+0

這是Java嗎?目標C?什麼語言? – 2011-04-29 02:15:27

+0

Xcode。 iPhone的東西。 – Mikecito 2011-04-29 02:36:52

+0

你在哪裏使用initButtonBarComponentWithButtonArray方法中的數組? – 2011-04-29 02:40:53

回答

1

嘗試設置爲您的視圖和子視圖啓用用戶交互

+0

自己解決了這個問題。一世 – FengChui 2011-04-30 03:22:56

相關問題