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!!
http://www.iphonedevsdk.com/forum/iphone-sdk-development/55942-fade-fade-out-view-object.html
구글링한것과 달리 0.8.2 에서는

 COCOS2D_DEBUG=1 

위와 같은 메시지가 존재하지 않는다.
결국 구글링으로 해결했지만

default.png를 지운다음에 Try "Build"->"Clean All Targets" 를 하면 해결된다.



xcode subversion 에서 commit 하려고 하면 자꾸 위의 에러가 뜨는데 아래와 같은 방법으로 해결한다. ( 결국 build 폴더를 같이 올려서 생기는문제)

I had my project in subversion and was trying to get it to work with Xcode, but kept running into error 155007 whenever I tried to commit my changes from Xcode. After trying many different ways to get to the bottom of this, here are the steps that worked:

  • Delete your local copy (cd myxcodeproject; rm -rf .)
  • Delete the “build” folder from the server
  • svn co https://svnserver/path/trunk/project .

Now you should see .svn folders in every directory of your local project (you don’t see them if you use the “Export” function of the SCM panel from Xcode). At this point, you should be able to edit and commit your changes directly from Xcode.



출처 : http://www.neophob.com/serendipity/index.php?/categories/17-Coding

서버에 build 폴더가 올라가면 commit error 가 되는 현상이 발생하였는데 위처럼 했더니 고쳐졌다