Skip to main content

TTStyleSheet with span class



I am making an app with Three20. I have a TTTableViewController that is the main catalog for other screens and a secont TTViewController connected with a tturl scheme.





In my TTViewController there is a TTStyledTextLabel connected to a UIScrollView, that displays a chunk of text from a database that has span, p with classes.





I have defined those classes in an TTStyleSheet subclass that is instantiated just like in TTCatalog example.





The problem is, that even though in my TTTableViewController the stylesheet works, in the TTViewController it doesn't.





I have defined my TTViewController loadView as the following:







- (void)loadView {

[super loadView];

FMDBDataAccess *dba = [[[FMDBDataAccess alloc] init] autorelease];

Definition *def = [dba getDefinition:termId];

NSLog(@"%@ ",def.term);

self.title = def.term;

NSString *s = def.definition;

TTStyledTextLabel* label1 = [[[TTStyledTextLabel alloc] initWithFrame:CGRectMake(10, 10, self.view.bounds.size.width-20, self.view.bounds.size.height-20)] autorelease];

label1.font = [UIFont fontWithName:@"PFIndex Black" size:15];

label1.text = [TTStyledText textFromXHTML:s lineBreaks:YES URLs:YES];

label1.contentInset = UIEdgeInsetsMake(10, 10, 10, 10);

[label1 sizeToFit];

CGFloat height = label1.height;



CGRect scrollViewFrame = CGRectMake(0, 0, 320, 440);

sv = [[UIScrollView alloc] initWithFrame:scrollViewFrame];

[self.view addSubview:sv];



CGSize scrollViewContentSize = CGSizeMake(320, ceil(height));

[sv setContentSize:scrollViewContentSize];

[sv addSubview:label1];

}







Also, in my -initWithTermId:(int)termId:







- (id)initWithTermId:(int)tid {

if (self = [super init]) {

[TTStyleSheet setGlobalStyleSheet:[[[CustomStyleSheet alloc] init] autorelease]];

termId = tid;

}

return self;

}







Where CustomStyleSheet is the subclassed TTStyleSheet. Am I using the right UI Control for styling my text? Is there another one to use?


Comments

Popular posts from this blog

Slow Android emulator

I have a 2.67 GHz Celeron processor, 1.21 GB of RAM on a x86 Windows XP Professional machine. My understanding is that the Android emulator should start fairly quickly on such a machine, but for me it does not. I have followed all instructions in setting up the IDE, SDKs, JDKs and such and have had some success in staring the emulator quickly but is very particulary. How can I, if possible, fix this problem?

Java Urban Myths

Along the line of C++ Urban Myths and Perl Myths : What are the Java Urban Myths? That is, the ideas and conceptions about Java that are common but have no actual roots in reality . As a Java programmer, what ideas held by your fellow Java programmers have you had to disprove so often that you've come to believe they all learned at the feet of the same drunk old story-teller? Ideally, you would express these myths in a single sentence, and include an explanation of why they are false.