在图像中嵌入 UITextView
我有一个 UIImageView 显示我用 iPhone 相机拍摄的照片。 最重要的是,我有一个 UITextView,用户可以在其中键入描述图片的内容。
我想创建两个视图的组合图像并将其发送到服务器。
任何人都知道我该怎么做(只需创建图像。我知道如何发送它)
I have a UIImageView displaying a picture that I took with the iPhone Camera.
On top of that, I have a UITextView in which the user can type stuff that describes the picture.
I would like to create a combined image of the two views and send it to a server.
Anyone knows how I can do that (just creating the image. I know how to send it)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果 UIImageView 和 UITextView 包含在另一个 UIView 中。或者,如果您可以在同一个 UIView 上创建 UITextView 和 UIImageView,则可以执行此操作。
其中 myView 等于包含两者的 UIView。
您还可以将每个单独绘制(通过适当设置框架)到 myView 中以完成相同的操作。
If the UIImageView and UITextView are contained in another UIView. Or if you can create a UITextView and UIImageView on the same UIView you can then do this.
Where myView is equal to the UIView containing the two.
You can also draw each one separately (by setting the frame appropriately) into myView to accomplish the same thing.