Contents

Views 29845 Comment 0
?

Shortcut

PrevPrev Article

NextNext Article

Larger Font Smaller Font Up Down Go comment Print
?

Shortcut

PrevPrev Article

NextNext Article

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"]]];


?