我有一个自定义的UIView,它在视图中绘制一个填充的圆角矩形。问题是当我将视图放在我的UITableViewCell中并放置约束时,在运行时,它不会在我放置它的位置绘制圆角矩形。
以下图片供参考:http://imgur.com/a/XwCHS
前两个是Xcode,而第三个是在iPhone 5模拟器上运行。
我的自定义UIView:
import UIKit
@IBDesignable class AlertRoundedView: UIView {
// Only override drawRect: if you perform custom drawing.
// An empty implementation adversely affects performance during animation.
override func drawRect(rect: CGRect) {
// Drawing code
let color : UIColor = UIColor(red: 1, green: 1, blue: 1, alpha: 1)
color.setFill()
let path : UIBezierPath = UIBezierPath(roundedRect: CGRectInset(self.frame, 0, 0), cornerRadius: 20)
path.fill()
}
}
我的TableViewController(刚刚用于测试):
import UIKit
class AlertsViewController: UIViewController, UITableViewDataSource, UITableViewDelegate{
@IBOutlet weak var emptyAlertsView: UIView!
@IBOutlet weak var tableView: UITableView!
override func viewDidLoad() {
super.viewDidLoad()
var alerts : [Int] = [4, 6, 3, 4]
if(alerts.count > 0){
//Show table
tableView.hidden = false
emptyAlertsView.hidden = true
tableView.delegate = self
tableView.dataSource = self
tableView.allowsSelection = false
tableView.reloadData()
}else{
//Show empty view
tableView.hidden = true
emptyAlertsView.hidden = false
}
}
override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
// Dispose of any resources that can be recreated.
}
// MARK: - Table view data source
func numberOfSectionsInTableView(tableView: UITableView) -> Int {
// #warning Incomplete implementation, return the number of sections
return 1
}
func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
// #warning Incomplete implementation, return the number of rows
return 4
}
func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCellWithIdentifier("AlertCell", forIndexPath: indexPath)
print(cell)
// Configure the cell...
return cell
}
}
答案 0 :(得分:0)
可能是您的约束设置不正确。尝试在Interface Builder中布置圆角矩形并在运行之前设置约束。
试一试。
答案 1 :(得分:0)
替换
let path : UIBezierPath = UIBezierPath(roundedRect: CGRectInset(self.frame, 0, 0), cornerRadius: 20)
与
let path : UIBezierPath = UIBezierPath(roundedRect: CGRectInset(rect, 0, 0), cornerRadius: 20)
看看是否有效