Label Alignment in iOS 6 - UITextAlignment deprecated

前端 未结 11 819
再見小時候
再見小時候 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:22

    NSTextAlignmentCenter can be used in place of UITextAlignmentCenter and a list of other replacements is below:

    #ifdef __IPHONE_6_0 // iOS6 and later
    #   define UITextAlignmentCenter    NSTextAlignmentCenter
    #   define UITextAlignmentLeft      NSTextAlignmentLeft
    #   define UITextAlignmentRight     NSTextAlignmentRight
    #   define UILineBreakModeTailTruncation     NSLineBreakByTruncatingTail
    #   define UILineBreakModeMiddleTruncation   NSLineBreakByTruncatingMiddle
    #endif
    

提交回复
热议问题