dat.gui如何在一行添加两个控件

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了dat.gui如何在一行添加两个控件相关的知识,希望对你有一定的参考价值。

参考技术A 1 、添加class=“form-inline”
<div class="row">
<div>
<label class="form-inline" />参加单位: <input type="text" class="form-control" /></label>
</div></div>

主要就是添加form-inline就可以了。
如果是一个文本框和一个按钮的话那么只需要在外侧用div包含,然后使用form-inline属性就可以了
<div class="form-inline row">
<input type="text" class="form-control" placeholder="关键字" />
<button class="btn btn-primary">搜 索</button>
</div>

2、利用网格方式显示在一行
<form class="form-horizontal" role="form">
<div class="form-group">
<label for="name" class="col-sm-1 control-label">名字</label>
<div class="col-sm-11">
<input type="text" class="form-control" style="width: 350px">
</div>
</div>
</form>

如何在iphone的tableview中添加按钮控件

【中文标题】如何在iphone的tableview中添加按钮控件【英文标题】:how to add button controls in tableview in iphone 【发布时间】:2011-07-09 12:08:04 【问题描述】:

我正在表格视图中显示记录。我的每一行都显示记录标题、一张个人资料图片、用户名。这一切都完美地显示出来。但现在我必须添加一个带有图像的按钮(Facebook 中的“喜欢”图像)。每当用户单击那个特定的“喜欢”按钮时,就会发生一个事件。并且每当用户单击行的标题时,都会加载新的 nib 文件。

1) 我将如何添加应该定义事件发生方法的图像。 2)我将如何区分点击事件发生的位置(标题或“喜欢”图片)。

这是在表格中添加值并在每一行中添加个人资料图像的部分代码。

// Code which is adding image of facebook and Twitter in each row as per data


if([[imageData objectAtIndex:[indexPath row]]isEqualToString:@"facebook"])


    UIImage *leftImage=[UIImage imageNamed: @"facebook.png"];
    cell.imageView.image= leftImage;


else if([[imageData objectAtIndex:[indexPath row]]isEqualToString:@"twitter"])
    UIImage *leftImage=[UIImage imageNamed: @"twitter_bird_normal.jpg"];
    cell.imageView.image= leftImage;

这是在表中添加值的代码

...
...
[tableList addObject:facebookValue]; //facebookValue is string parsing from JSON
...
...

【问题讨论】:

【参考方案1】:

创建一个类型为 UIButtonTypeCustom 的 UIButton 将其图像设置为您的 leftImage。 将目标和选择器添加到指向委托和方法的按钮。这是您正在寻找的事件。 此外,使用 indexPath.row 标记按钮,以便您知道它来自哪一行。 将按钮作为子视图添加到单元格中。

【讨论】:

以上是关于dat.gui如何在一行添加两个控件的主要内容,如果未能解决你的问题,请参考以下文章

为动态添加的控件保存 dat.gui 预设?

如何更改 dat.gui 下拉菜单的位置?

cesium如何搭建dat.gui

如何使用数组将变量插入 dat.Gui?

如何锁定滑块并防止使用鼠标将值更新到 dat.GUI 菜单

在 dat.gui 中禁用按钮的方法?