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];
}
但爲什麼我不能運行觸摸事件中的代碼?
這是Java嗎?目標C?什麼語言? – 2011-04-29 02:15:27
Xcode。 iPhone的東西。 – Mikecito 2011-04-29 02:36:52
你在哪裏使用initButtonBarComponentWithButtonArray方法中的數組? – 2011-04-29 02:40:53