有时我什么都不想做。
我只想有一个声明,这样我就可以设置断点。
在 c 和 Objective-c 中我们有 while (false);
说我想破坏一个功能
-(void)viewDidAppear:(BOOL)animated
{
[super viewDidAppear:animated];
self.navigationItem.leftBarButtonItem=nil;
self.navigationItem.rightBarButtonItem=nil;
[[NSNotificationCenter defaultCenter]addObserver:self selector:@selector(updateDisplays) name: NotificationUpdateArroworLocation object:nil];
PO(self.tableView.indexPathForSelectedRow);
while(false);//I put break point here so program stop here.
}
在 .net 中,我们什么都没有(不确定是我编的吗?)。
我们应该在 PhP 中使用什么?