如何在 iPhone5 的 UIActionSheet 中对齐按钮文本?
问问题
587 次
1 回答
0
使用这种方式,您可以在操作表上设置框架、更改字体以及按钮文本的对齐方式。
CGRect oldFrame = [(UILabel*)[[sheet subviews] objectAtIndex:0] frame];
UILabel *newTitle = [[[UILabel alloc] initWithFrame:oldFrame] autorelease];
newTitle.font = [UIFont boldSystemFontOfSize:17];
newTitle.textAlignment = UITextAlignmentCenter;
newTitle.backgroundColor = [UIColor clearColor];
newTitle.textColor = [UIColor whiteColor];
newTitle.text = @"Your Title";
[sheet addSubview:newTitle];
[sheet release];
于 2013-04-09T05:33:36.247 回答