Developer/iOS

[IPhone] TableView 터치시 파란색을 다른색으로 바꾸기

블로blow 2011. 1. 19. 14:17
728x90

UITableViewCell 에 보면 UITableViewCellSelectionStyle enum을 보면


The style of selected cells.

typedef enum {
   UITableViewCellSelectionStyleNone,
   UITableViewCellSelectionStyleBlue,
   UITableViewCellSelectionStyleGray
} UITableViewCellSelectionStyle;


이렇게 나와있다. 다른색으로 세팅을 할려면 CustromCell을 직접 만들어서 적용하면 된다. 

또는 selected img로 등록해서 적용하면 어떨까?

728x90