카테고리 없음2010. 9. 4. 11:02
http://blog.naver.com/wodnr7200?Redirect=Log&logNo=40107208073

휴대폰 경쟁에서 길잃은 LG
http://news.mk.co.kr/v3/view.php?year=2010&no=335247
카테고리 없음2010. 8. 27. 15:22

If you don't subclass UITableViewController, there is a way to do it. Just implement setEditing:animated: in your UIViewController subclass as follows:
- (void) setEditing:(BOOL)editing animated:(BOOL)animated {
   
[super setEditing: editing animated: animated];
   
[self.tableView setEditing:editing animated:animated];
}
- (void)viewDidLoad {
   
[super viewDidLoad];

   
self.navigationItem.rightBarButtonItem = self.editButtonItem;
}
wow!!