当前位置: 代码迷 >> Web前端 >> UITextview添边框
  详细解决方案

UITextview添边框

热度:167   发布时间:2012-07-25 09:43:06.0
UITextview加边框
        [contentTextView.layer setBorderColor: [[UIColor grayColor] CGColor]];    
        [contentTextView.layer setBorderWidth: 1.0];    
        [contentTextView.layer setCornerRadius:8.0f];    
        [contentTextView.layer setMasksToBounds:YES];