开发者

iPhone UIDatePicker in Landscape mode?

开发者 https://www.devze.com 2022-12-21 09:04 出处:网络
iPhone UI Componenet UIDatePicker d开发者_运维技巧oes not support Landscape mode? it scratches 2/3 of the width in Landscape mode only.

iPhone UI Componenet UIDatePicker d开发者_运维技巧oes not support Landscape mode? it scratches 2/3 of the width in Landscape mode only.

How to make it use up full width (480px)?


Try to manually re/set the UIDatePickers' subviews bounds like this:

- (void) viewDidLoad {
    [super viewDidLoad];
    for (UIView * subview in datePicker.subviews) {
        subview.frame = datePicker.bounds;
    }
}

Everything is nicely described in this article: Using UIDatePicker in landscape mode

0

精彩评论

暂无评论...
验证码 换一张
取 消