- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在开发一款应用,用户可以在其中向订单中添加产品。每个产品都有自己的 UIView,所有这些产品都放在一个 UI 中(并放在一个数组中以供将来引用,如总价等)。我对添加产品并没有做太多花哨的事情:
/* Create the new product */
var tmp = Product(data: product)
/* Add it to the scrollView */
scrollView.addSubview(tmp)
我正在为 UIScrollView 本身使用 AutoLayout,但没有设置约束(我也已清除它以进行检查)。
澄清一下:Product 是 UIView 的子类,只是为了标准化每个产品的外观。
但是,当我添加超过 1 个产品时,新产品会放置在第一个产品之上,而不是第一个产品之下。我有一种感觉,我错过了使用具有自动布局的 UIScrollView 的关键部分。谁能指出我正确的方向?
编辑:最后我通过创建一个方法来解决它(重新)计算位置,因为我在 UICollectionView 中得到了相同的行为。我在 Android 中开发同一个应用程序,您可以让子元素充当 block (在 CSS 意义上)元素。我固执地在 iOS 中寻找相同的解决方案 :)
最佳答案
当您调用 [scrollView addSubview:productView];
在将 subview 添加到 UIScrollView 之前,您需要使用 initWithFrame 告诉 subview 正确的位置,在这种情况下,您似乎正在使用自动布局。
如果您对替代方案持开放态度,我认为 UICollectionView 可以实现您想要的。 Collection View 中的每个“单元格”都是您的产品 View 。 Collection View 具有 ScrollView 的所有功能。
如果您在产品 View 中使用框架,那么您可以这样做:
var view1:UIView = UIView(frame: CGRectMake(0, 0, 320, 480)];
// -----------------------------------------------------------------------
// Notice here, view2 has a Y position that takes the height of view1
//
// So we're telling iOS to put view2 right below view1 before we
// add it as a subview of our scrollView
// -----------------------------------------------------------------------
var view2:UIView = UIView(frame: CGRectMake(0, view1.frame.origin.y, 320, 480));
self.scrollView.addSubview(view1);
self.scrollView.addSubview(view2);
为了完整起见,我将包含一个使用 Swift 的基本 UICollectionView Autolayout 演示。
import UIKit
class ViewController: UIViewController, UICollectionViewDataSource, UICollectionViewDelegate, UICollectionViewDelegateFlowLayout {
var arrItems:NSMutableArray = NSMutableArray();
var collectionView:UICollectionView?;
override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view, typically from a nib.
self.arrItems.addObject("Apple");
self.arrItems.addObject("Banana");
self.arrItems.addObject("Orange");
self.arrItems.addObject("Mango");
self.arrItems.addObject("Watermelon");
initViews();
initConstraints();
}
override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
// Dispose of any resources that can be recreated.
}
func initViews()
{
// ------------------------------------------------------
// Init the collection View
// ------------------------------------------------------
var flowLayout:UICollectionViewFlowLayout = UICollectionViewFlowLayout();
flowLayout.itemSize = CGSizeMake(self.view.bounds.size.width, self.view.bounds.size.height / 2.0);
self.collectionView = UICollectionView(frame: CGRectZero, collectionViewLayout: flowLayout);
self.collectionView?.registerClass(ProductCell.self, forCellWithReuseIdentifier: "cellID");
self.collectionView?.delegate = self;
self.collectionView?.dataSource = self;
self.collectionView?.backgroundColor = UIColor.whiteColor();
self.collectionView?.pagingEnabled = true;
self.view.addSubview(self.collectionView!);
}
func initConstraints()
{
self.collectionView?.setTranslatesAutoresizingMaskIntoConstraints(false);
var views:NSMutableDictionary = NSMutableDictionary();
views.setValue(self.collectionView!, forKey: "collectionView");
self.view.addConstraints(NSLayoutConstraint.constraintsWithVisualFormat("H:|[collectionView]|", options: nil, metrics: nil, views: views));
self.view.addConstraints(NSLayoutConstraint.constraintsWithVisualFormat("V:|[collectionView]|", options: nil, metrics: nil, views: views));
}
func collectionView(collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
return self.arrItems.count;
}
func collectionView(collectionView: UICollectionView, cellForItemAtIndexPath indexPath: NSIndexPath) -> UICollectionViewCell {
// ---------------------------------------------------
// Note, Swift is able to detect all developer's own
// class files, so no need to import ProductCell
// ---------------------------------------------------
// create a ProductCell
var cell:ProductCell = collectionView.dequeueReusableCellWithReuseIdentifier("cellID", forIndexPath: indexPath) as ProductCell;
// setup product info
cell.productName.text = self.arrItems[indexPath.row] as NSString;
cell.productDescription.text = "This is some text about the product. It can be a very long block of text or maybe a really short one. Up to you to design it anyway you like.";
return cell;
}
}
import UIKit
class ProductCell: UICollectionViewCell {
var container:UIView = UIView();
var productName:UILabel = UILabel();
var productDescription:UILabel = UILabel();
override init(frame: CGRect) {
super.init(frame: frame);
initViews();
initConstraints();
}
required init(coder aDecoder: NSCoder) {
super.init(coder: aDecoder);
}
func initViews()
{
self.container.backgroundColor = UIColor.lightGrayColor();
self.container.layer.cornerRadius = 5.0;
self.productName.font = UIFont.systemFontOfSize(14);
self.productName.textColor = UIColor.whiteColor();
self.productName.textAlignment = NSTextAlignment.Center;
self.productName.numberOfLines = 0;
self.productName.setContentHuggingPriority(1000, forAxis: UILayoutConstraintAxis.Vertical);
self.productName.backgroundColor = UIColor(red: 0.2, green: 0.2, blue: 0.8, alpha: 1.0);
self.productName.layer.cornerRadius = 5.0;
self.productName.clipsToBounds = true;
self.productDescription.font = UIFont.systemFontOfSize(14);
self.productDescription.numberOfLines = 0;
self.container.addSubview(self.productName);
self.container.addSubview(self.productDescription);
self.contentView.addSubview(self.container);
}
func initConstraints()
{
self.container.setTranslatesAutoresizingMaskIntoConstraints(false);
self.productName.setTranslatesAutoresizingMaskIntoConstraints(false);
self.productDescription.setTranslatesAutoresizingMaskIntoConstraints(false);
var views:NSMutableDictionary = NSMutableDictionary();
views.setValue(self.container, forKey: "container");
views.setValue(self.productName, forKey: "productName");
views.setValue(self.productDescription, forKey: "productDescription");
// container constraints
self.contentView.addConstraints(NSLayoutConstraint.constraintsWithVisualFormat("H:|-20-[container]-20-|", options: nil, metrics: nil, views: views));
self.contentView.addConstraints(NSLayoutConstraint.constraintsWithVisualFormat("V:|-20-[container]-20-|", options: nil, metrics: nil, views: views));
// subview constraints
self.container.addConstraints(NSLayoutConstraint.constraintsWithVisualFormat("H:|-10-[productName]-10-|", options: nil, metrics: nil, views: views));
self.container.addConstraints(NSLayoutConstraint.constraintsWithVisualFormat("H:|-10-[productDescription]-10-|", options: nil, metrics: nil, views: views));
self.container.addConstraints(NSLayoutConstraint.constraintsWithVisualFormat("V:|-10-[productName(50)]-10-[productDescription]-10-|", options: nil, metrics: nil, views: views));
}
}
你应该得到这样的结果:
关于ios - UIScrollView 及其子项 : why are they placed on top of each other? (AutoLayout),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26233999/
我正在尝试将 margin-left:20px 分配给表单内的所有 div,其类包含编辑,具有以下内容: form.edit > div { margin-left:20px; } 我的想法
我有这个 xpath: .//*[@id='some_id']/td//div 现在我想选择特定类型的 div 的任何子项,例如每个子项是标签或跨度。像这样的东西 .//*[@id='some_id'
我有一个包含包含用户信息的键列表的键,现在当我的表单加载时,我想将这些键作为数组获取。我该怎么做?我找到了获取计数的方法,但仍然不知道如何获取这些 key 。 最佳答案 您可以使用 Microsoft
关闭。这个问题需要更多 focused 。它目前不接受答案。 想要改进这个问题?更新问题,使其只关注 editing this post 的一个问题。 关闭 6 年前。 Improve this q
我正在通过一些在线教程来学习 AEM。根据教程,创建组件时,需要在 Allowed Parents 或 Allowed Children 中输入一些值。但是,我在窗口中看不到这样的选项。当我尝试创建组
我需要将 MDI 子窗体的创建集中到 Delphi (VCL) 中的一个独特过程中。这个想法是每次创建 MDI 子窗体时执行一些操作,无论其类型如何,即将其标题名称添加到列表中以访问该 MDI 子窗体
我试图在 TreeView 中获取所选节点的所有子节点,但遇到了一些问题。 以这个 TreeView 为例: 我想将所有子节点变为黄色突出显示的“文件夹”节点,这将是旁边有一条蓝线的子节点。 这是我尝
我在最小化我所有的 MDIChildren 时遇到了麻烦,遇到了 MDIChild to minimize not activated properly 我最小化所有 child 的代码是: proc
我使用下面的代码通过单击系统关闭按钮来关闭 MDI 子窗体,它工作正常: procedure Tfrm_main.FormClose(Sender: TObject; var Action: TC
仅当我指定对象的完整路径时,我才能通过指定特定子键来查找 Firebase 对象。这是为什么? 这有效 ref.child(`users/${user.uid}/watchlist/${key}`)
每当我单击工具栏菜单时,它每次都会显示新表单。我想阻止它一次又一次地显示相同的表单。在给出的代码中,form2 一次又一次地显示。我想停止它,以便它显示一次。 喜欢: private void new
我想知道是否有一种方法可以通过遍历父节点的 vector 来获取子节点中的数据。我有一个我计划经常更改的 XML 文件,因此我想避免对属性名称进行硬编码。因此,我想在我的子节点中提取数据而不使用 pt
假设我有以下 YAML 文件: - key1: value # and so on... key99: value key100: subkey1: value # an
我不是代码天才,而是行动脚本爱好者。 你能帮我吗? 我有一个函数,根据选择的对象,该函数将事件监听器调用已经在舞台上的一组“子项目”(我想在单击时重新使用具有更改参数的子项目,而不是创建多个实例和代码
我需要一些帮助来查询分层数据。这是一个简单的表,其中 parent_id 引用 id 并且对于根条目可能为 null。 create table edition ( id
我尝试获得一个简单的 GEF 编辑器。我有一个 GraphicalEditorWithPalette 来创建我的示例模型。我有一个覆盖 createFigure 和 getModelChildren
我正在尝试搜索其中包含子项(文本区域)的表格单元格。我努力了td.children.value,td.childNodes.value,td.firstChild.value,td.lastChild
我有一个 mdi 父 form 并且我在运行时通过以下代码将我的其他 form 作为 mdi 子窗体打开: private void MenuItem_Click(object sender, Eve
我在 Activity 中加载了一个 GridView,其中存在 fragment 。 GridView 本身并不位于 Fragment 中。我通过 BaseAdapter 创建了一个客户适配器,一切
我在导航 Controller 中有两个 child (根 child 和第二个 child )。我通常先去找根 child ,然后再去找第二个 child 。这允许我使用导航 Controller
我是一名优秀的程序员,十分优秀!