如何在安装后找到Xcode(Xcode beta)?

时间:2015-06-20 06:18:19

标签: ios xcode installation xcode7

我是iOS世界的新手,刚刚开始学习用于创建iOS应用程序的技术。我已经在我的mac上下载了Xcode 7(beta)(它有一个OS 10.10.2)。我使用下载的文件(Xcode_7_beta.dmg)使用terminal命令(Xcode-select -install)完成安装。安装似乎已经完成但是我很难在任何地方找到安装,并打算启动它。希望得到一些帮助。谢谢。

1 个答案:

答案 0 :(得分:1)

该应用程序将命名为 Xcode-beta ,并存在于您的“应用程序”文件夹中。

它位于驱动器的根目录下:- (void)viewDidLoad{ /*IF You are using class */ [self.tableView registerClass:[UITableViewCell class] forCellReuseIdentifier:@"cellIdentifire"]; /* if you are using nib */ // LOAD UP THE NIB FILE FOR THE CELL UINib *nib = [UINib nibWithNibName:@"CustomNibCell" bundle:nil]; // REGISTER THE NIB FOR THE CELL WITH THE TABLE [self.tableView registerNib:nib forCellWithReuseIdentifier:@"cellIdentifire"]; } - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{ UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"cellIdentifire" forIndexPath:indexPath]; /* Write code cell.title= @"hello"; */ return cell; }