我创建了一个自定义对象,我想用标签访问它。我之前已经为非客户NSObject做了一百万次,它曾经工作过,但不适合我的自定义NSObject。我缺少什么?
dataSplash* splashO = [[dataSplash alloc]initWithFrame:CGRectMake....;
splashO.tag = 201;
[self.view addSubview:splash0];
我尝试以触摸方式开始访问
-(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event{
UITouch *touch = [touches anyObject];
int tagOfView = touch.view.tag ;
....
}
总是说标签是零。