I am positioning a UITextView at the center of the screen, which works fine whether I'm on landscape or portrait position (iPhone or iPad). The problem is that it does not stay at the center when I rotate the device. I thought it would automatically stay at the center.
Since the text view is create in viewWillAppear I am wondering if there's a way to refresh the view on device orientation. Or perhaps simply to move the view.
My code below:
-(void)viewWillAppear:(BOOL)animated{
[super viewWillAppear:animated];
UITextView *infoTextView = [[UITextView alloc] init];
infoTextView.frame = CGRectMake(0, 0, 300.0, 300.0);
infoTextView.center = CGPointMake(CGRectGetWidth(self.view.bounds)/2.0f, CGRectGetHeight(self.view.bounds)/2.0f);
infoTextView.backgroundColor = [UIColor clearColor];
NSString *anotherViewText = @"This is the content";
infoTextView.dataDetectorTypes = UIDataDetectorTypeLink;
infoTextView.text = anotherViewText;
[infoTextView setFont:[UIFont fontWithName:@"ArialMT" size:18]];
infoTextView.editable = NO;
infoTextView.textAlignment=NSTextAlignmentCenter;
[self.view addSubview:infoTextView];
}
Replace the code with this: