iOS UITextView加边框

来源:互联网 发布:淘宝评价无法上传照片 编辑:程序博客网 时间:2024/06/03 07:49

    // 给UITextView添加边框

    _textView.layer.backgroundColor = [[UIColorclearColor]CGColor];

    _textView.layer.borderColor = [[UIColor orangeColor]CGColor];

    _textView.layer.borderWidth = 1.0;

    [_textView.layersetMasksToBounds:YES];


原创粉丝点击