gpt4 book ai didi

ios - 整数和字符串不会正确填充.. Objective C

转载 作者:行者123 更新时间:2023-11-29 12:45:17 27 4
gpt4 key购买 nike

代码如下。最终发生的事情就好像我使用了 leftPadding 而不是 rightPadding,并且字符串或长整数将在屏幕右侧运行。我想要的是字符串本身在右边填充,它的长度延伸到左边..

- (void)constructTimeStampLabel {
CGFloat rightPadding = 250.f;
CGFloat topPadding = -30.f;
CGRect frame = CGRectMake(rightPadding,
topPadding,
floorf(CGRectGetWidth(__informationView.frame)),
CGRectGetHeight(__informationView.frame) - topPadding);
_timeStampLabel = [[UILabel alloc] initWithFrame:frame];
_timeStampLabel.text = [NSString stringWithFormat:@"Sent on %@", _feedItem.timeStamp];
_timeStampLabel.textColor = [UIColor whiteColor];
[_timeStampLabel setFont:[UIFont systemFontOfSize:12]];
[__informationView addSubview:_timeStampLabel];
}

最佳答案

尝试将对齐方式设置为右侧。

_timeStampLabel.textAlignment = NSTextAlignmentRight;

关于ios - 整数和字符串不会正确填充.. Objective C,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23812652/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com