UILabel 和应用商店规则中的表情符号使用
有谁知道如果苹果认为这是越界的话我是否在应用程序的视图中使用表情符号unicode? 我不是在询问启用表情符号或销售旨在启用表情符号的应用程序。
代码示例 - 将 NSString 放入 tableViewCell NSLabel 中:
if([combatCurrentHp intValue] <= [combatMaxHp intValue] / 2) {
characterStats = [characterStats stringByAppendingString:@" \uE022"];
}
这使得表情符号心形出现在字符串中。 你们知道是否有一个硬性规定来规定该应用程序是否会被从应用程序商店中踢出?
Does anyone know if I use emoji unicode in an app's view if Apple considers this out of bounds? I'm not asking about enabling emoji or selling an app that is meant to enable emoji.
And example of the code - which is placing an NSString into a tableViewCell NSLabel:
if([combatCurrentHp intValue] <= [combatMaxHp intValue] / 2) {
characterStats = [characterStats stringByAppendingString:@" \uE022"];
}
This makes an emoji heart appear in the string. Do you guys know if there is a hard and fast rule on if that would get kicked back out of the app store?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我在 App Store 中看到过使用表情符号代码点的应用程序,但我不确定它是否被允许,或者这些应用程序只是偷偷溜了过去。 我认为对此没有严格的政策。
但是,禁止启用表情符号键盘。
I've seen applications that use the Emoji codepoints in the App Store, but I'm not sure if it's permitted or those apps just snuck through. I don't think there is a strict policy on this.
Enabling the emoji keyboard however is forbidden.
晚了 2 年,但以防万一其他人对这个问题感兴趣,官方答案是在 UILabels 中使用表情符号没有问题。
一年前我给应用程序审核团队的电子邮件:
他们的回应:
此外,我的应用程序在过去一年中一直使用表情符号,没有出现任何问题。
2 years late, but just in case anyone else is interested in this question, the official answer is that there's no problem using emoji in your UILabels.
My email to App Review team a year ago:
Their response:
Also, my app has been using the emoji for the past one year with no issue.
我不认为启用表情符号键盘是被禁止的,因为它在所有亚洲国家/地区都是标准启用的,并且应用程序商店中有数十种应用程序可用于在其他国家/地区解锁它。 如果苹果打算禁止任何人使用键盘,为什么他们要把键盘整合到系统中呢?!
I don't believe that enabling the Emoji keyboard is forbidden as it is enabled as standard in all Asian countries and there are dozens of apps available in the app store for unlocking it in other countries. Why would Apple incorporate the keyboard in the system if they intended to forbid anyone from ever using it?!