Label in table view cell won't delete

I created an app using the master-detail template for iOS. When I try to delete the label that is contained in the table view cell, it won’t delete. Anyone know why I can’t delete that and how I can delete that? I’d like to at least resize the label and rename it.

Check the Attributes Inspector for your table view cell. I’m guessing that the Style is set to Basic. The Basic style gives you a single label that fills the cell. If you want to do your own thing with the cell contents, set the Style to Custom.

Have fun!