作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
目前我的 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/
我是一名优秀的程序员,十分优秀!