gpt4 book ai didi

ios - 如何将 uitableview 中的单个单元格链接到不同的 URL?

转载 作者:行者123 更新时间:2023-11-29 02:40:05 26 4
gpt4 key购买 nike

目前我的 uitablview 中有两个独立的标题数组。每个数组都分组在它自己的部分中。例如。第 1 部分(item1、item2、item3) 第 2 部分(item1、item2 等)。我想将每个单元格链接到某个 wordpress 帖子。我该怎么做?我在包含数组的 viewdidload 方法下方链接了我的所有代码。

- (void)didReceiveMemoryWarning
{
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
}

#pragma mark - Table view data source

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
// Return the number of sections.
return numberOfSections;
}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
switch (section) {
case manualSection:
return [self.manual count];
case interviewSection:
return [self.interviews count];
default:
return 0;
}
}


- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier forIndexPath:indexPath];

switch (indexPath.section)
{
case manualSection:
cell.textLabel.text = [self.manual objectAtIndex:indexPath.row];
break;
case interviewSection:
cell.textLabel.text = [self.interviews objectAtIndex:indexPath.row];
break;
default:
cell.textLabel.text = @"Not Found";
}
return cell;

}

- (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section {

switch (section) {
case manualSection:
return @"Manual";
break;
case interviewSection:
return @"Interviews";
break;
default:
return 0;
}

最佳答案

  • 使用您需要的属性创建模型(标题、链接)
  • 使用模型而不是字符串更新数组(手册、访谈)
  • 在您向我们展示的类中实现 -tableView:didSelectRowAtIndexPath: 函数,以访问您需要的索引处的列表;然后获取模型并访问链接

NSURL *url = [NSURL URLWithString:@"http://www.stackoverflow.com/"];
if( ![[NSWorkspace sharedWorkspace] openURL:url] )
NSLog(@"Failed to open url: %@",[url description]);

关于ios - 如何将 uitableview 中的单个单元格链接到不同的 URL?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25903405/

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