Unable to make view equal width to cell in iOS?(无法在 iOS 中使视图与单元格宽度相等?)
问题描述
我正在 iOS 中制作一个自定义单元格.我添加了原型单元格.我正在尝试在与父单元格宽度相等的单元格内添加一个视图.但是单元格的宽度不相等请告诉我我该怎么做是吗?
I am making a custom cell in iOS.I have added prototype cell.I m trying to add a view inside a cell of equal width to parent cell.But the width of cell is not equal please tell me how should i do it?
约束是:
视图结构:
在 iPad 上预览时不显示完整视图.但在实际设备上它工作正常.为什么?
In preview on iPad it does not show complete view .But on actual device it works fine.Why?
此处示例
https://drive.google.com/file/d/0B7RGQm8-8k24Q0tXUFZOLUZFQk0/view?usp=sharing
推荐答案
当我检查您的示例项目时,我发现您将 viewController 大小设置为 iPhone4.7 英寸
...我检查了故事板的源代码,我发现 targetRuntime="iOS.CocoaTouch"
As I checked your sample project I found that You made your viewController size to iPhone4.7 inch
...and I checked the source code of storyboard and I found that targetRuntime="iOS.CocoaTouch"
所以,在预览的时候,它只是复制了预览的参考,基本上是 iPhone 尺寸,并显示给你 iPhone 尺寸预览......
So, at the time of preview,it just copied the reference for preview which is basically iPhone size and display you the iPhone size preview...
对于解决方案,我所做的是...只需更改 Storyboard 源代码..
For the solution what I do is...just change in Storyboard source code..
搜索 targetRuntime="iOS.CocoaTouch"
并将其更改为 targetRuntime="iOS.CocoaTouch.iPad"
然后只需检查预览......你可以看看它工作正常....
Search for targetRuntime="iOS.CocoaTouch"
and change it to targetRuntime="iOS.CocoaTouch.iPad"
and then just check preview...and you can see that it works fine....
这篇关于无法在 iOS 中使视图与单元格宽度相等?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:无法在 iOS 中使视图与单元格宽度相等?


- 使用自动布局向 UIScrollView 添加动态大小的视图 2022-01-01
- Xcode 7.3 中带有 UILabel 的 UIStackView 2022-01-01
- URL编码Swift iOS 2022-01-01
- GPS状态的广播接收器? 2022-01-01
- 如何在 iPhone 模拟器中重置 NSUserDefaults 数据? 2022-01-01
- SetOnItemSelectedListener上的微调程序错误 2022-01-01
- 类似于 Mail.app 的 iPad 模态视图控制器? 2022-01-01
- 在 Iphone SDK 的导航栏上添加多个按钮 2022-01-01
- 网上有没有好的 UIScrollView 教程? 2022-01-01
- UITextView 内容插图 2022-01-01