UILabelを角丸にする。
1 2 3 |
label.backgroundColor = [UIColor orangeColor]; label.layer.cornerRadius = 10; //←角丸 label.clipsToBounds = YES; //←iOSバージョンによって挙動が変わるのに対応 |
labelの背景をlabel.layer.backgroundColorで指定しているサイトがあったが、tableviewのセル上のlabelでlabel.layer.backgroundColorを指定するとセルをタップしたあと背景がクリアされる。