0
製成我在的appdelegate類是 -如何從另一個類調用的drawRect方法,當它在AppDelegate類
@implementation UINavigationBar (category)
- (void)drawRect:(CGRect)rect{
UIImage *img = [UIImage newImageFromResource:@"Img.png"];
[img drawInRect:rect];
[img release];
}
@end
我要設置的大小(X,Y,寬度,高度上進行的方法)的圖像(Img.png)programitcally在其他一些類..所以如何調用/使用( - (void)drawRect:(CGRect)rect)方法在其他類?
你不能用它來繪製一個自定義導航欄的的iOS 5 – jrturton