[iOS] Storyboardで Prototype Cells を使うと、cellの生成にinitWithStyle:reuseIdentifier:メソッドは必要ない
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"XXX"];
だけ書けば、cellが自動的に生成されます。
References
iphone - dequeueReusableCellWithIdentifier returns nil using storyboard static cells - Stack Overflow Table View Programming Guide for iOS: A Closer Look at Table View Cells