菜鸟教程小白 发表于 2022-12-13 16:32:31

iphone - 从数组填充 UITableView


                                            <p><p>我需要以下代码的帮助,我正在使用 hpple 解析 html。
我需要帮助使用这些数据。</p>

<pre><code>-(void) whatever{
NSData *htmlData = [] dataUsingEncoding:NSUTF8StringEncoding];
TFHpple *xpathParser = [ initWithHTMLData:htmlData];
NSArray *titles= ; // get the page title - this is xpath   notation
TFHppleElement *title = ;
NSString *myTitles = ;

NSArray *articles= ; // get the page article - this is xpath   notation
TFHppleElement *article = ;
NSString *myArtical = ;
</code></pre>

<p>我想从数组“titles”中创建和填充一个表
然后可以点击表格上的项目来加载一个 subview ,该 subview 应该在同一索引处显示相应的文章?</p>

<p>我想以编程方式或使用 IB 进行此操作</p>

<p>谁能推荐一些示例代码或教程?</p>

<p>谢谢。</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><pre><code>    - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{

return ;

}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{



      static NSString *MyIdentifier = @&#34;MyIdentifier&#34;;

      UITableViewCell *cell =;
      if (cell == nil){
            cell = [[ initWithFrame:CGRectZero reuseIdentifier:MyIdentifier] autorelease];
      }


    cell.textLabel.text = ;

      return cell;

}


- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{

/* here pop up Your subview with correspondingvaluefrom the array with array index indexpath.row ..*/

}
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于iphone - 从数组填充 UITableView,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/4367393/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/4367393/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: iphone - 从数组填充 UITableView