Issue 1: Bad Excess
Status:  New
Owner: ----
Reported by astrolab...@gmail.com, Apr 2, 2012
Hi, 

Thanks for help, nice work indeed, i was wondering how could we import this code in separate xcode project. this demo is working absolutely fine. but i am unable to use this code with my project, i tried it with new xcode project as well not a single line of code is changed, first message is sending successfully but when i send second messege having bad access in 

NSScanner+HTML.m 

in method 
- (BOOL)scanCSSAttribute:(NSString **)name value:(NSString **)value 

at line
if (![self scanCharactersFromSet:cssStyleAttributeNameCharacterSet intoString:&attrName])


Thanks in advance.
Regards!

May 24, 2012
#1 ronak...@gmail.com
hi
thanks for help. i have also same problem occur while i integrate  project into my project.i got crash on same line
if (![self scanCharactersFromSet:cssStyleAttributeNameCharacterSet intoString:&attrName])  when i added EmotionLabel component into my tableview.when i first time set then it work perfactly.but when try it second time i got crash on same line which i have mention..please quickly reply....

Thanks & Regards
May 31, 2012
#2 supeinme...@gmail.com
Thanks for the project!
I have the same problem. When using the label in tableview get a bad access error in the same line.

Anyone got if working?

Thanks

Jun 5, 2012
#3 astrolab...@gmail.com
Hello Friend!

The code is perfect no issues in code.
The emotionLabel code is using ARC, There are lots of changes if you want to use that code without ARC.
Other solution is change your project to ARC support and then use that code.


Jan 20, 2014
#4 suu10...@gmail.com
Hello Friends!!!

Had a chance to work on this code really great one and found the issue on non-arc projects its really very simple one.Change the flags to arc "-fobjc-arc"for the following files alone,

NSAttributedString+HTML.m
NSCharacterSet+HTML.m
NSScanner+HTML.m
NSMutableAttributedString+HTML.m
EmotionalLabel.m
NSURL+HTML.m

Run your project it will work on non-arc projects.

Though i was late, hope helps for newbies...