UITableViewのcellForRowAtIndexPathにUINibメソッドを使用したAppleのサンプルコードをいくつか見ています。
-(UITableViewCell*)tableView:(UITableView*)tableView cellForRowAtIndexPath:(NSIndexPath*)indexPath {
static NSString *QuoteCellIdentifier = @"QuoteCellIdentifier";
QuoteCell *cell = (QuoteCell*)[tableView dequeueReusableCellWithIdentifier:QuoteCellIdentifier];
if (!cell) {
UINib *quoteCellNib = [UINib nibWithNibName:@"QuoteCell" bundle:nil];
[quoteCellNib instantiateWithOwner:self options:nil];
cell = self.quoteCell;
self.quoteCell = nil;
最後の2行がよくわかりません
cell = self.quoteCell;
self.quoteCell = nil;
誰かがこれらの最後の2行で何が起こっているのか説明できますか?ありがとう。