有兩個UIView
,需要繪制一個矩形,或獲取兩個UIView
框架最小的矩形。
應該怎麼實現?
問題描述不明確。
如果在UIView中繪制矩形,在-(void)drawRect 中來畫。
-(void)drawRect {
CGRect rect=self.bounds;
CGContextRef context=UIGraphicsGetCurrentContext();
CGContextSetFillColorWithColor(context,[UIColor redColor].CGColor);
CGContextSetFillRect (context, rect);
}