ARC
Opened this issue · 1 comments
jurjen-van-dijk commented
Hi,
It is a small thing, but in the current version there is one build error when using ARC.
In 'UIBubbleHeaderTableViewCell.m' at line 33;
[dateFormatter release];
should be
if !__has_feature(objc_arc)
[dateFormatter release];
endif
Then it is fixed.
And changing line 51 to:
self.label.textAlignment = NSTextAlignmentCenter;
fixed the waring in iOS 6 too.
AlexBarinov commented
Thank you