Develop

[ios] 테이블뷰셀/뷰에 배경 패턴 넣기..

by hooni posted Apr 23, 2013
?

Shortcut

PrevPrev Article

NextNext Article

ESCClose

Larger Font Smaller Font Up Down Go comment Print

UITableViewCell 배경 패턴 넣기..

[self setBackgroundColor:
    [UIColor colorWithPatternImage:
        [UIImage imageWithContentsOfFile:
            [[[NSBundle mainBundle] resourcePath]
                stringByAppendingPathComponent:@"list_bg.png"]]]];


저걸 줄이면..? ㅋㅋ

[self setBackgroundColor:
    [UIColor colorWithPatternImage:
        [UIImage imageNamed:@"list_bg.png"]]];