gpt4 book ai didi

objective-c - 简短而有用的 Objective-C 片段?

转载 作者:太空狗 更新时间:2023-10-30 03:11:08 24 4
gpt4 key购买 nike

从 XCode 4 开始,现在有一个代码片段部分,它在键入时通过自动完成提供片段。我会对你们都存储在那里的片段非常感兴趣。哪些片段最能为您节省时间(以及为什么)?

请只发布实际片段(意思是不要尖刻“不需要任何臭片段”,也不要“我喜欢做 的片段”),并且只发布< strong>简短而甜美(即最多不超过 20 行...)。如果一个片段没有明显的用处,也请解释你认为它有用的原因。 ;)

最佳答案

我不知道这是否重要,但每当我在我的任何 View Controller 中添加 UITableView 时,我总是使用此代码段。

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *cellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:cellIdentifier];
if(cell == nil)
{
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle
reuseIdentifier:cellIdentifier];
// Do something here......................
}
// Do something here too .........................
return cell;
}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
return ;
}

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
return ;
}

如果您不使用 UITableViewController 来显示表格内容,它会非常方便。

关于objective-c - 简短而有用的 Objective-C 片段?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5270265/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com