#iphone #uilabel
#iPhone #uilabel
Вопрос:
как моя UILabel может выглядеть как UITableViewStyleGrouped из TableView?
Ответ №1:
В верхней части исходного файла:
#import <QuartzCore/QuartzCore.h>
Для настройки метки:
label.backgroundColor = [UIColor whiteColor];
label.layer.cornerRadius = 10.0;
label.layer.borderColor = [UIColor blackColor].CGColor;
label.layer.borderWidth = 1.0;