黑色子视图作为选择器视图

发布于 2024-10-19 16:46:52 字数 95 浏览 2 评论 0原文

单击文本字段时弹出选择器视图时遇到一些问题。它已正确弹出(并且键盘已正确隐藏),但它没有显示我的数据数组,而是作为黑色子视图弹出......有类似的体验吗?有什么想法吗?谢谢!

I'm having some problems while popping up a picker view when clicking into a textfield. It's correctly popped (and keyboard is properly hidden), but instead of showing my array of data, it pops up as a black subview... any similar experience? any idea? Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

GRAY°灰色天空 2024-10-26 16:46:52

我认为您没有为数据源和选择器视图的委托方法建立连接,检查这些方法并实施

- (NSInteger)numberOfComponentsInPickerView:(UIPickerView *)thePickerView




- (NSInteger)pickerView:(UIPickerView *)thePickerView numberOfRowsInComponent:(NSInteger)component 

- (NSString *)pickerView:(UIPickerView *)thePickerView titleForRow:(NSInteger)row forComponent:(NSInteger)component 

I think you dont make connection for datasource and delegate methods of picker view check those and implement

- (NSInteger)numberOfComponentsInPickerView:(UIPickerView *)thePickerView




- (NSInteger)pickerView:(UIPickerView *)thePickerView numberOfRowsInComponent:(NSInteger)component 

- (NSString *)pickerView:(UIPickerView *)thePickerView titleForRow:(NSInteger)row forComponent:(NSInteger)component 
谁把谁当真 2024-10-26 16:46:52

pickerView 根本不可见吗?或者只是缺少数据?
你正在设置pickerView的框架吗?您不应该调整它的高度。它的高度应该是默认高度。您可以从 IB 获得该价值。

Is the pickerView at all isn't visible? Or only data is missing?
Are you setting frame of pickerView? You should not tweak with its height. Its height should be default one. You can get that value from IB.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文