iOS: add show tree node action

This commit is contained in:
王劲鹏
2021-07-14 19:54:34 +08:00
committed by osborn
parent 7fd81ce92c
commit d4477ac2a3
7 changed files with 257 additions and 0 deletions

View File

@@ -87,6 +87,10 @@ - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath
UIBarButtonItem *rightBarItem = [[UIBarButtonItem alloc] initWithTitle:@"Devkit" style:UIBarButtonItemStylePlain target:self action:@selector(onOpenDevkit)];
doricViewController.navigationItem.rightBarButtonItem = rightBarItem;
[self.navigationController pushViewController:doricViewController animated:NO];
dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(2.0 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{
[[DoricDev instance] openDevMode:self];
});
}
@end