- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
Storyboard中的 UIScrollView
有一个奇怪的问题。我创建了自定义 UITableViewCell
,我想在其中包含 UIScrollView
。当我在代码中这样做时,它就像一个魅力。我是这样做的:
- (instancetype)initWithCoder:(NSCoder *)aDecoder
{
self = [super initWithCoder:aDecoder];
if (self)
{
UIScrollView *scroller = [[UIScrollView alloc] initWithFrame:CGRectMake(40, 25, 650, 25)];
scroller.showsHorizontalScrollIndicator = NO;
UILabel *contentLabel = [[UILabel alloc] initWithFrame:CGRectMake(0, 0, 320*4, 25)];
contentLabel.backgroundColor = [UIColor blackColor];
contentLabel.textColor = [UIColor whiteColor];
NSMutableString *str = [[NSMutableString alloc] init];
for (NSUInteger i = 0; i < 100; i++)
{
[str appendFormat:@"%i ", i];
}
contentLabel.text = str;
[scroller addSubview:contentLabel];
scroller.contentSize = contentLabel.frame.size;
[self addSubview:scroller];
}
return self;
}
但是当我在 Storyboard 中创建 UIScrolView 并将其放入我的原型(prototype)单元格中时,将 socket 与 customCell 类连接起来,然后完全相同:
- (instancetype)initWithCoder:(NSCoder *)aDecoder
{
self = [super initWithCoder:aDecoder];
if (self)
{
storyboardScrollView.showsHorizontalScrollIndicator = NO;
UILabel *contentLabel = [[UILabel alloc] initWithFrame:CGRectMake(0, 0, 320*4, 25)];
contentLabel.backgroundColor = [UIColor blackColor];
contentLabel.textColor = [UIColor whiteColor];
NSMutableString *str = [[NSMutableString alloc] init];
for (NSUInteger i = 0; i < 100; i++)
{
[str appendFormat:@"%i ", i];
}
contentLabel.text = str;
[storyboardScrollView addSubview:contentLabel];
storyboardScrollView.contentSize = contentLabel.frame.size;
}
return self;
}
我的单元格是空的。你知道它有什么问题吗?
最佳答案
在 - (instancetype)initWithCoder:(NSCoder *)aDecoder
函数中,IBOutlets 还没有连接到你的类。所以指针将有 nil
它们将在调用 - (void)awakeFromNib
函数时连接。
所以你可以这样做。
- (void)awakeFromNib
{
storyboardScrollView.showsHorizontalScrollIndicator = NO;
UILabel *contentLabel = [[UILabel alloc] initWithFrame:CGRectMake(0, 0, 320*4, 25)];
contentLabel.backgroundColor = [UIColor blackColor];
contentLabel.textColor = [UIColor whiteColor];
NSMutableString *str = [[NSMutableString alloc] init];
for (NSUInteger i = 0; i < 100; i++)
{
[str appendFormat:@"%i ", i];
}
contentLabel.text = str;
[storyboardScrollView addSubview:contentLabel];
storyboardScrollView.contentSize = contentLabel.frame.size;
}
关于UITableCellView 内的 iOS scrollView,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22553009/
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-
我是一名优秀的程序员,十分优秀!