のどこか- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
:
static NSString *CellIdentifier = @"TagCell";
TagCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier
forIndexPath:indexPath];
対
NSString *CellIdentifier = NSStringFromClass([TagCell class]);
TagCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier
forIndexPath:indexPath];
パフォーマンスに関しては最初の例の方が優れていると思いますが、リファクタリングに関しては 2 番目の例の方が優れています。
私はいつも 2 番目の方法を使用します。
これらのコード サンプルのパフォーマンスに大きな違いはありますか?