This is not an answer, but I wanted to add a screenshot to my comment.
I dragged UILabel onto my storyboard and tied it to label1. Everything looks good to me. I am using Xcode 4.6 with iOS 6. Tell me if I missed something?
@interface v1ViewController : UIViewController @property (nonatomic, retain) IBOutlet UILabel *label1; @end @implementation v1ViewController @synthesize label1; - (void)viewDidLoad { [super viewDidLoad]; NSArray *tempArray = [[NSArray alloc] initWithObjects:@"ĂniversĂ€l", nil]; NSString *str2 = [tempArray objectAtIndex:0]; //NSLog(@"str2: %s",[str2 UTF8String]); // outputs âĂșniversâ§l NSLog(@"str2: %@",str2); // outputs ĂniversĂ€l label1.text = str2; }

source share