hi i have a scroll view and in that scrollview i have label and and i have a dynamic text for that label …..
and i am adding another label to the scroll view at the end of the first lable…..
and the code is as follows….
UILabel *lblGenericName = [self createDynamicLabel:responseDrugInfo.GenName
contentFrame:CGRectMake(120, 24, 150, 20)
color:[UIColor customisedlightgreysColor]
font:[UIFont regular14]];
[scrollview addSubview:lblGenericName];
[lblGenericName release];
lblGenericName.numberOfLines = 0;
[lblGenericName sizeToFit];
now i want to add dynamically another label at the end of that label …
can any one please help me how to do that……..
Try this