I\'d like a UITableView with subtitle-style cells that use dequeueReusableCellWithIdentifier.
UITableView
subtitle
dequeueReusableCellWithIdentifier
My original Objective-C code was
Perfect as suggested by Michael G. Emmons, but in Xcode 6.1 using
if !cell { .....
I get this error:
Optional type '@|value UITableViewCell?' cannot be used as boolean ; test for '!= nil' instead
The accepted syntax is:
if cell == nil { ...