ecstasy2 / toast-notifications-ios

We at Guru software really love toast notifications available on android OS, so we've built a similar feature for the IOS enabled devices.
MIT License
325 stars 106 forks source link

memory leak #43

Open lieyunye opened 8 years ago

lieyunye commented 8 years ago

NSAttributedString *attributedText =[[NSAttributedString alloc] initWithString:text attributes:@{ NSFontAttributeName: font}]; CGRect rect = [attributedText boundingRectWithSize:CGSizeMake(CGRectGetWidth([UIScreen mainScreen].bounds), 60) options:NSStringDrawingUsesLineFragmentOrigin context:nil];

attributedText should release!!!

OrangeDog commented 8 years ago

Are you not supposed to be using ARC?