I'm new to the iPad developer,
I made one registration form in my application, when I see my application in Portraitmode, I can see the entire form without scrolling, but when I see the same form in mode Landscape, I can not see the part that is at the bottom of the page, for this there should be a scroll there to see the bottom.
: In my .hfile, when I replace
@interface ReminderPage : UIViewController{
...
...
}
:UIViewController with :UIScrollView
and then when I add a tag to my file .mlike
UILabel *Lastpaidlbl = [[[UILabel alloc] initWithFrame:CGRectMake(70 ,400, 130, 50)]autorelease];
Lastpaidlbl.backgroundColor = [UIColor greenColor];
Lastpaidlbl.font=[UIFont systemFontOfSize:20];
Lastpaidlbl.text = @"Lastpaid on :";
[self.view addSubview:Lastpaidlbl];
I get an error in the last line. Property view not found on object of type classname. I can not add a label in my opinion.
Any help would be appreciated.