Label Alignment in iOS 6 - UITextAlignment deprecated

前端 未结 11 803
再見小時候
再見小時候 2020-12-12 10:59

Seems like UITextAlignmentCenter is deprecated in iOS 6.

I still use it and works well, but it gives a warning.

How can I fix this?

<         


        
11条回答
  •  时光取名叫无心
    2020-12-12 11:33

    UILabel *label1 = [[UILabel alloc] initWithFrame:CGRectMake(10, 10, 150, 40)];
    [label1 setText:@"Your String"];
    [label1 setBackgroundColor:[UIColor clearColor]];
    [label1 setNumberOfLines:0];
    [label1 sizeToFit];
    
    //For Center Alignment
    [label1 setTextAlignment:NSTextAlignmentCenter];
    
    //For Right Alignment
    [label1 setTextAlignment:NSTextAlignmentRight];
    
    //For Left Alignment
    [label1 setTextAlignment:NSTextAlignmentLeft];
    
    // Add the label into the view
    
    [self.view addSubview:label1];
    

提交回复
热议问题