Quote:
Originally Posted by Moglimani
Hi all,
I have added label to the imageview then i released the label. the imageview is in global. so how to get the value from the image. anu suggestion. please help 
|
You can use the tag property of label to access it from imageview.
label.tag = 222;
[imageView addSubview:label];
[label release];
.....
.....
UIlabel * newlabel =[imageview viewWithTag:222];
Then you can use newLabel...