- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我已经多次使用这个教程:http://www.alexyork.net/blog/2011/07/18/creating-custom-uitableviewcells-with-monotouch-the-correct-way/
但是里面有一段代码我不太理解:
cell = new MyCustomCell();
var views = NSBundle.MainBundle.LoadNib("MyCustomCell", cell, null);
cell = Runtime.GetNSObject( views.ValueAt(0) ) as MyCustomCell;
最佳答案
让我们一次看一件事情。
LoadNib 方法取消归档(并实例化)NIB 的内容。第一个参数是 NIB 的名称,第二个参数是要加载的 NIB 的所有者。也就是说,NIB 的“文件所有者”占位符对象,在这种情况下,我想它只是一个 NSObject。
LoadNib 方法还返回一个对象的 NSArray。这些对象是 NIB 的顶级对象,在本例中,它是您在 NIB 中创建的自定义单元。
我想当你在构造函数中移动上面的代码时,你实现了这样的东西:
public MyCustomCell() : base()
{
NSBundle.MainBundle.LoadNib("MyCustomCell", this, null);
}
public MyCustomCell() : base()
{
NSArray arr = NSBundle.LoadNib("MyCustomCell", this, null);
this = Runtime.GetNSObject(arr.ValueAt(0)); // should retain everything,
//BUT: Compile error!
}
cell = new MyCustomCell(); // Created a new instance of MyCustomCell
var views = NSBundle.MainBundle.LoadNib("MyCustomCell", cell, null); // Assigned it as an owner
cell = Runtime.GetNSObject( views.ValueAt(0) ) as MyCustomCell; // What happens to the owner?
// Not needed
//cell = new MyCustomCell();
var views = NSBundle.MainBundle.LoadNib("MyCustomCell", tableView, null); // Owner is now the tableView
cell = Runtime.GetNSObject( views.ValueAt(0) ) as MyCustomCell;
views = null; // Don't need it anymore
// Inside MyCustomCell
public static MyCustomCell CreateCell(NSObject owner)
{
NSArray topLevelObjects = NSBundle.MainBundle.LoadNib("MyCustomCell", owner, null);
MyCustomCell customCell = Runtime.GetNSObject(topLevelObjects.ValueAt(0)) as MyCustomCell;
topLevelObjects = null;
return customCell;
}
关于uitableview - 了解自定义 UITableCellView 的创建——从 MonoTouch 中的 Nibs 加载,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9872655/
Storyboard中的 UIScrollView 有一个奇怪的问题。我创建了自定义 UITableViewCell,我想在其中包含 UIScrollView。当我在代码中这样做时,它就像一个魅力。我
我正在使用 Grouped UITableView 并添加 UITableViewCells 两个 UILabel,并将它们添加到单元格的 contentView。我还在我的应用程序中在此 UITab
这个问题与我的另一个已解决的问题有关: Dynamic UITableCellView height 我想实现一个动态的单元格高度,使用这段代码是可行的: import UIKit class MyT
我正在制作一个简单的计时器应用程序。我有一个多行的 uitable。在那个表中,我放了一个 UIButton。一切正常,到目前为止一切顺利,即我看到按钮出现在每一行中。接下来我需要做的是为 UIBut
我想创建一个具有不同行高的 UITableView,并且我尝试通过在 UITableViewCells 内创建 UILabels 来实现此目的。 这是我到目前为止的代码: - (UITableView
我有一个继承自 UITableViewCell 类的自定义类,它显示图像(标题左侧)或如果图像不可用则显示通用深色方 block )。以下代码在浅色单元格背景上显示了一个深色方 block : ima
我有一个自定义的 UIView。使用我的 StoryBoard,我将一个 UIView 小部件添加到我在 StoryBoard 中绘制的 UITableCellView。我将类更改为我的自定义类 (V
我有一个 UITableViewController,它有自己的类 HomeVC,包含多个 Cell,其中一个使用自己的类 NewsFeedCell。此单元格包含一个显示图片的垂直 UIScrollV
我想要一个 UIButton 位于 UITableCellView 的中心。我已在 tableView cellForRowAt 函数中添加了必要的代码,但出现错误: View 层次结构没有为约束做好
我在自定义表格单元格中有两个 UILabel,在 Interface Builder 中每个“行”都设置为“0”。它们在表格内垂直堆叠,左右边缘对齐,行高由自动布局确定。但是他们中的一个仍然坚持截断。
如何将 3 个 UIButton 对齐到 UITableCellView 的中心? 例如,假设我有 3 个带有标题的 UIButton: 电子邮件 电话 网络电话 有可能隐藏一个或多个 UIButto
我已经多次使用这个教程:http://www.alexyork.net/blog/2011/07/18/creating-custom-uitableviewcells-with-monotouch-
我是一名优秀的程序员,十分优秀!