toast-notifications-ios icon indicating copy to clipboard operation
toast-notifications-ios copied to clipboard

memory leak

Open lieyunye opened this issue 8 years ago • 1 comments

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!!!

lieyunye avatar Jun 29 '16 08:06 lieyunye

Are you not supposed to be using ARC?

OrangeDog avatar Jun 29 '16 14:06 OrangeDog