繁体   English   中英

PhoneGap:iOS 7中的UIPickerView不会像在iOS 6中那样自动调整字体大小。如何在iOS 7中实现的任何解决方案?

[英]PhoneGap : UIPickerView in iOS 7 does not adjust font size automatically as it does in iOS 6. Any solution for how can I achieve in iOS 7?

PhoneGap:iOS 7中的UIPickerView不会像在iOS 6中那样自动调整字体大小。如何在iOS 7中实现的任何解决方案?

iOS 7 UIPickerView出现Phonegap问题

最后添加optgroup ,它可以工作... :)

<select>
  <option selected="" disabled="">Select a value</option>
  <option>Grumpy wizards make toxic brew for the evil Queen and Jack</option>
  <option>Quirky spud boys can jam after zapping five worthy Polysixes</option>
  <option>The wizard quickly jinxed the gnomes before they vaporized</option>
  <option>All questions asked by five watched experts amaze the judge</option>
  <optgroup label=""></optgroup>
</select>

检查一下: -UIKitUICatalog / UIPickerView

You cannot customize the appearance of picker views.

但是您可以选择其他方法。 您可以在此委托方法中返回自定义UILabel :-

- (UIView *)pickerView:(UIPickerView *)pickerView viewForRow:(NSInteger)row forComponent:(NSInteger)component reusingView:(UIView *)view
{
UILabel *label = [[UILabel alloc] init];
// Set frame, font color, font size, text, etc properties here.
return label;

}

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM