如何从界面生成器设置 uitextview 的垂直对齐

发布于 2024-12-04 14:33:55 字数 76 浏览 0 评论 0原文

我的应用程序设计有问题。我想设置 UITextView 中间的垂直对齐。 请帮助我如何从界面生成器设置 uitextview 的垂直对齐。

I have a problem in my application design. I want to set vertical align middle of my UITextView.
Please help me how to set vertical align of uitextview from interface builder.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

简单爱 2024-12-11 14:33:55

通过观察 contentSize 属性的更改然后设置 contentOffset 来实现此目的。

- (void)viewDidLoad{
    [super viewDidLoad];
    [myTextView addObserver:self forKeyPath:@"contentSize" options:(NSKeyValueObservingOptionNew) context:nil];
}

-(void)observeValueForKeyPath:(NSString *)keyPath ofObject:(id)object change:(NSDictionary *)change context:(void *)context {
    UITextView *myView = object;

    CGFloat offSet = ([myView bounds].size.height - [myView contentSize].height * [myView zoomScale])/2.0;
    offSet = offSet < 0.0 ? 0.0 : offSet;
    [myView setContentOffset:CGPointMake(0, -offSet) animated:NO]; 
}

Got this to work by observing changes to the contentSize property and then setting contentOffset.

- (void)viewDidLoad{
    [super viewDidLoad];
    [myTextView addObserver:self forKeyPath:@"contentSize" options:(NSKeyValueObservingOptionNew) context:nil];
}

-(void)observeValueForKeyPath:(NSString *)keyPath ofObject:(id)object change:(NSDictionary *)change context:(void *)context {
    UITextView *myView = object;

    CGFloat offSet = ([myView bounds].size.height - [myView contentSize].height * [myView zoomScale])/2.0;
    offSet = offSet < 0.0 ? 0.0 : offSet;
    [myView setContentOffset:CGPointMake(0, -offSet) animated:NO]; 
}
屋顶上的小猫咪 2024-12-11 14:33:55
*yourtextviewname*.textAlignment=UITextAlignmentCenter;

您可以通过界面生成器来完成此操作。打开文本字段的属性并将文本对齐方式设置为居中。

*yourtextviewname*.textAlignment=UITextAlignmentCenter;

You can do this by interface builder.Open attributes of text field and set text Alignment to center.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文