I've UIViewController and another UIView with some images and labels on it.
向きを変更したいのですが、うまく機能します。デバイスを回転させるときにaqGridviewフレームを変更できます。
私のコード:
- (void)makePortraitOrientation {
[gridView setFrame:CGRectMake(0, 43, 768,961)]; //works like a charm
HeaderView* dsd = [[HeaderView alloc] initWithParentID:self]; // in this way there is no errors but nothing changes
[dsd.label setFrame:CGRectMake(0, 0, 0, 0)];
[dsd setNeedsDisplay];
[self.HeaderView.label setFrame:CGRectMake(0, 0, 0, 0)]; //error, no object HeaderView in UIViewController
[self.HeaderView.label CGRectMake]
}
UIViewのヘッダファイル
@interface HeaderView : UIView{
id parentID;
UIButton *menu;
UIImageView *icon;
NSString *product;
THLabel *label;
NSMutableArray *backs;
}
主な問題は、私の UIViewController ではなく、別の UIView にある画像とラベルのフレームと場所を変更するにはどうすればよいですか?
プログラムで作成されたすべてのビュー。