I am trying to mix dynamic and static cells in a grouped table view: I would like to get two sections with static cells at the top followed by a sec
UITableViewCell *cell = [self dequeueReusableCellWithIdentifier:@"cellIdentify"];
if (cell == nil)
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:@"cellIdentify"];
Just you dont call alloc. If you dont want to reuse, just dont call dequeueReusableCellWithIdentifier.