我有一个使用以下方式创建的标签:
UILabel *label = [[UILabel alloc] initWithFrame:cell.contentView.bounds];
label.autoresizingMask = UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight;
label.textAlignment = UITextAlignmentCenter;
我想将标签底部居中并水平居中。我在 typedef 枚举中没有找到任何 UITextAlignmentBottom。
有人可以提出解决方案吗?