- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我遇到了这样的麻烦,我的 UILabel 有 NSTextAlignmentRight 并且我将其设置为末尾带有符号“”的文本。问题是我的 UILabel 看起来像这样:
----------------- -----------------
| 699 | but has to look: | 699 |
----------------- -----------------
如果我尝试用符号“P”替换它,没关系。购买我需要“”符号。有什么解决办法吗?
最佳答案
试试这个:
- (NSString *)printPriceWithCurrencySymbol:(CGFloat)price {
NSNumberFormatter * numberFormatter = [[NSNumberFormatter alloc] init];
[numberFormatter setNumberStyle:NSNumberFormatterCurrencyStyle];
[numberFormatter setCurrencyCode:@"RUB"];
[numberFormatter setLocale:[NSLocale localeWithLocaleIdentifier:@"ru"]];
NSString * productPrice = [numberFormatter stringFromNumber:[NSNumber numberWithFloat:price]];
return productPrice;
}
用作:
[[self label] setText:[self printPriceWithCurrencySymbol:45.50]];
我看到的问题是它只打印“rub”。在西里尔字母表中,但不是提到的符号。
从下面的链接来看,卢布符号对世界来说是一个很新的符号。所以我猜你必须等待苹果为此更新它的库。
http://www.huffingtonpost.com/huff-wires/20131211/eu--russia-ruble-symbol/?utm_hp_ref=world&ir=world
关于ios - 如何修复 NSTextAlignment 中错误切割的 UILabel 对?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21088654/
我在 Xcode5 上为 ios7 编码,编译器显示这个错误:从枚举类型隐式转换:NSTextAlignment 枚举 NSTextAlignment 到不同的枚举 UITextAlignment -
我正在使用 Xcode 5.0.2 并在尝试编译我的 Objective-C 代码时收到以下警告: **Implicit conversion from enumeration type 'NSTex
self.descriptionTextView.textAlignment = NSTextAlignment.Center println(self.descriptionText
我明白,通过使用 NSTextAlignment.Natural,您允许标签使用给定语言的默认右移方向绘制其内容,这有助于堆本地化,允许标签从左侧绘制其文本- 在英语/西类牙语/等语言中从右到右,在阿
我遇到了这样的麻烦,我的 UILabel 有 NSTextAlignmentRight 并且我将其设置为末尾带有符号“”的文本。问题是我的 UILabel 看起来像这样: ------------
我刚刚查看了 UIKit 中的 NSText.h,下面的代码引起了我的注意,因为它不寻常 /* Values for NSTextAlignment */ typedef NS_ENUM(NSInte
我试图证明我的 UILabel 文本是正确的,但它不起作用。 我的UIView声明: descriptionUIView = UIView(frame: CGRect(x: 0, y: 0, widt
我有一个使用 NSTextAlignmentJustified 的应用程序对于 NSAttributedString .在 iOS 6 一切都很好。但在 中运行的相同应用程序iOS 7 (模拟器或设备
在我的 Swift 类中,我将变量定义为 @objc var textAlignment: NSTextAlignment? { didSet { if textAlignme
在为 iOS6 编译我的应用程序时,我收到以下弃用消息: 从 iOS 6 及更高版本开始,UITextAlignmentCenter 已弃用。请改用 NSTextAlignmentCenter。 我认
我对自己非常失望,但我无法将此代码从 objective-c 转换为 swift。 :-( 有人可以帮助我吗?我不知道,而且在 Google 上什么都找不到。经过几个小时的沮丧,我请求你的帮助 ;-)
我很好奇是否可以对 UITextField 的文本对齐方式的变化进行动画处理。基本上我有一个 UITextField 的对齐方式通常设置为居中,并且我希望它在用户开始编辑时向左移动。这是我在 UITe
我是一名优秀的程序员,十分优秀!