Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在开发一个应用程序,其中要求在文本视图中有文本。我必须为该文本视图文本提供镜像效果。我在谷歌上搜索,但找不到任何解决方案。
我该如何解决?提前致谢。
UILabel在文本字段下方添加一个右侧。应用比例变换来镜像它。将 y 轴缩放 -1,将 x 轴缩放 1。然后您所要做的就是在每次文本字段更改时更新标签中的文本。
UILabel
看看这个演示项目。它有你想要的。
不久前我写了一篇使用视图的 CAReplicatorLayer的博客文章。它设计用于处理具有反射的视图的动态更新。该帖子使用 UIWebView,但您可以只使用 UITextView。