作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
目前我创建了一个可拖动的 UIView 作为 subview ,当前在每次创建时显示其中的文本。但是,我希望其中的文本随着每次创建而改变,例如第一个 UIView 显示 1,第二个显示 2,第三个显示 3,等等。到目前为止,这是我的代码:
- (void)panWasRecognized:(UIPanGestureRecognizer *)panner {
{
UIView *draggedView = panner.view;
CGPoint offset = [panner translationInView:draggedView.superview];
CGPoint center = draggedView.center;
draggedView.center = CGPointMake(center.x + offset.x, center.y + offset.y);
draggedView.layer.borderColor = [UIColor blueColor].CGColor;
draggedView.layer.borderWidth = 4.0f;
// Reset translation to zero so on the next `panWasRecognized:` message, the
// translation will just be the additional movement of the touch since now.
[panner setTranslation:CGPointZero inView:draggedView.superview];
}
}
- (IBAction)addRepButton:(UIBarButtonItem *)newRep {
buttonCount ++;
if (buttonCount > 1 )
{
UILabel *textField = [[UILabel alloc]initWithFrame:CGRectMake(100, 100, 100, 100)];
textField.userInteractionEnabled = YES;
textField.layer.cornerRadius = 20;
[textField setBackgroundColor: [UIColor whiteColor]];
textField.font = [UIFont systemFontOfSize:20];
textField.layer.borderColor = [UIColor blackColor].CGColor;
textField.textColor = [UIColor blackColor];
textField.layer.borderWidth = 4.0f;
textField.text = @"1";
textField.textAlignment = NSTextAlignmentCenter;
[self.view addSubview:textField];
UIPanGestureRecognizer *panner = [[UIPanGestureRecognizer alloc]
initWithTarget:self action:@selector(panWasRecognized:)];
[textField addGestureRecognizer:panner];
}
}
@end
最佳答案
您需要的是该类的一个属性,用于记录标签的数量。所以在接口(interface)(头文件,或者你可以在主文件的顶部添加一个接口(interface))添加一个整数属性,就像这样:
@property (nonatomic, assign) NSInteger labelCounter;
在您的 viewDidLoad 方法中将计数器初始化为零,例如:
self.labelCounter = 0;
现在在您的 addRepButton 方法中,将标签文本设置为该数字的值,如下所示:
textField.text = [NSString stringWithFormat:@"%i", self.labelCounter];
并且在相同的方法中,增加下一个标签的计数器:
self.labelCounter++;
应该可以了。
关于ios - 如何在每次添加时将文本显示为 UIView 的数量作为 ULabel,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33294824/
我在顶部附加了 2 个带有“零”约束的标签。一个标签的字体是 12,其他的是 15。我遇到的问题是文本和单元格边框之间有不必要的空格。请看一下: 您可以看到顶部的左侧空间小于第二个。如何解决? 最佳答
目前我创建了一个可拖动的 UIView 作为 subview ,当前在每次创建时显示其中的文本。但是,我希望其中的文本随着每次创建而改变,例如第一个 UIView 显示 1,第二个显示 2,第三个显示
快速版:为什么 UILabel 的“center”属性的值在其 Size 属性绑定(bind)到其父容器的顶部和底部之间发生变化,我该怎么做才能改变或者绕过这种行为? 包含详细信息的长版:我正在像这样
我是一名优秀的程序员,十分优秀!