iOS 6 中的标签对齐 - UITextAlignment 已弃用

Label Alignment in iOS 6 - UITextAlignment deprecated(iOS 6 中的标签对齐 - UITextAlignment 已弃用)

本文介绍了iOS 6 中的标签对齐 - UITextAlignment 已弃用的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

Seems like UITextAlignmentCenter is deprecated in iOS 6.

I still use it and works well, but it gives a warning.

How can I fix this?

label.textAlignment = UITextAlignmentCenter;

Thanks.

解决方案

In iOS6 you can use

label.textAlignment = NSTextAlignmentCenter;

这篇关于iOS 6 中的标签对齐 - UITextAlignment 已弃用的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本文标题为:iOS 6 中的标签对齐 - UITextAlignment 已弃用