I have a custom class called "Fraction" and its method "display" in which i'd like to show on View a UILabel:
-(void)display{
UILabel *myLabel = [[UILabel alloc]initWithFrame:CGRectMake(10, 50, 200, 40)];
[myLabel setBackgroundColor:[UIColor clearColor]];
[myLabel setText:@"______"];
[self.view addSubview:myLabel];
}
but I get this error on the last line:
Proprety 'view' not found on object of type 'Fraction *'
How can I solve?
(iPhone "single view" application, Xcode 4.5.2)