| 12345678910111213141516171819202122232425 |
- //
- // UILabel+AppLocale.m
- // Pods
- //
- // Created by Yeung Yiu Hung on 19/2/2016.
- //
- //
- #import "UILabel+AppLocale.h"
- @implementation UILabel (AppLocale)
- - (void)setLocalizedString{
- // if ([self respondsToSelector:@selector(localizedKey)] && self.localizedKey.length != 0) {
- // self.text = AMLocalizedString(self.localizedKey, nil);
- // }
-
- self.text = ASLocalizedString(self.text);
-
- [LocalizationSystem checkXibString:self.text];
-
- }
- @end
|