ios - 如何使用 Xcode 访问 NSArray 中的特定列
<p><p>我是 iOS 编程新手。我正在尝试将数组中对象的特定字段绑定(bind)到 <code>UITableView</code>。这是我的代码:</p>
<pre><code>NSArray *personInfo; //contains a record with fields: name, address, email
personInfo = [ getAllPersons]; //pulling the record into array
</code></pre>
<p>从那里,我试图从我的数组中获取字段“名称”。</p>
<pre><code>cell.textLabel.text = retain]
</code></pre></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>您的数组中似乎有对象,您可能正在寻找的是 <code>-</code> 方法 (<a href="http://developer.apple.com/library/mac/#documentation/Cocoa/Reference/Foundation/Classes/NSArray_Class/NSArray.html" rel="noreferrer noopener nofollow">documentation here</a>)。</p>
<p>例如:</p>
<pre><code>NSArray *names = ;
</code></pre>
<p>这应该会返回一个包含数组中所有名称的数组。</p></p>
<p style="font-size: 20px;">关于ios - 如何使用 Xcode 访问 NSArray 中的特定列,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/8485739/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/8485739/
</a>
</p>
页:
[1]