Incompatible pointer types Xcode
Semantic Issue: Incompatible p开发者_如何学Goointer types initializing NewCustomCell *
with an expression of type UITableViewCell *
static NSString *cellID = @"customCell";
NewCustomCell *cell = [tableView dequeueReusableCellWithIdentifier:cellID];
[tableView dequeueReusableCellWithIdentifier:cellID]
returns an object with type UITableViewCell *
. If you know that the cell will always be of type NewCustomCell *
, then you can tell the compiler to expect that with a cast. Like so:
NewCustomCell *cell = (NewCustomCell *) [tableView dequeueReusableCellWithIdentifier:cellID];
You have to cast it.
NewCustomCell *cell = (NewCustomCell *)[tableView dequeueReusableCellWithIdentifier:cellID];
精彩评论