The Omni Group Forums

The Omni Group Forums (http://forums.omnigroup.com/index.php)
-   Omni Frameworks (http://forums.omnigroup.com/forumdisplay.php?f=16)
-   -   Not working after importing the framework in the project (http://forums.omnigroup.com/showthread.php?t=15017)

GustavPicora 2010-01-12 11:00 PM

Not working after importing the framework in the project
 
Hello, I have downloaded the framework, and I see it has pretty nice things, one of the things Im interested in is parse an NSAttributedString to an html-like string with the tags, the functionality that implements its the one I need.
BUT, I installed the frameworks, then I add them into my project, and in the target I add a new copy files build phase with resource Frameworks, then I drag and drop the framework (already add it into the project) to the copy link inside the target... so OK I compile.. all fine.. I do the following to make a test:.
<code>
NSMutableParagraphStyle * aMutableParagraphStyle = [[(NSTextView *)[self view] typingAttributes]
objectForKey:@"NSParagraphStyle"];


NSMutableAttributedString * a = [[NSMutableAttributedString alloc] initWithString:text];
[a addAttribute:NSParagraphStyleAttributeName
value:aMutableParagraphStyle
range:NSRangeFromString(text)];

[aMutableParagraphStyle release];
[a autorelease];
NSString * a2 = [a htmlString];
</code>
but then I in console when running,
-[NSConcreteMutableAttributedString htmlString]: unrecognized selector sent to instance 0x26a8f0
Any ideas what I missed... ? Im new to this FW, and to using 3rd parties code in my projects, so please be kind with me.. Thanks

Best regards
Gustavo


All times are GMT -8. The time now is 09:23 AM.

Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2024, vBulletin Solutions, Inc.