AlexBarinov / UIBubbleTableView

Cocoa UI component for chat bubbles with avatars and images support
http://alexbarinov.github.com/UIBubbleTableView/
843 stars 232 forks source link

ARC #26

Open jurjen-van-dijk opened 11 years ago

jurjen-van-dijk commented 11 years ago

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 11 years ago

Thank you