I added UrbanAirship libraries to my code, and I am getting these kinds of error when compiling UAPushSettingsAliasViewController.m
and UAInboxMessageListCell.m
and a few similar classes. The errors happen on this method:
- (void)dealloc {
RELEASE_SAFELY(tableView);
RELEASE_SAFELY(aliasCell);
RELEASE_SAFELY(textCell);
RELEASE_SAFELY(textLabel);
RELEASE_SAFELY(aliasField);
[super dealloc];
}
and most of the errors are "release not available: not available in automatic reference counting mode"
Would anyone know why this is happening and how I can resolve this?
Thanks, Alex