iOS应用中的屏幕共享? [英] Screen sharing in iOS app?

查看:522
本文介绍了iOS应用中的屏幕共享?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我希望与运行相同应用程序的其他设备共享我的应用程序iPad屏幕。

I want share my application iPad screen with other devices which are running the same application.

更多细节:我的应用程序是会议应用程序。现在,我希望那些参与特定会议的人可以在我共享应用程序屏幕时显示我的屏幕。

More detail: My application is a meeting application. Now I want that those who are the participants of that particular meeting can my screen when I share my application screen.

结论:我想与其他设备共享我的应用程序屏幕它们运行相同的应用程序,就像Skype屏幕共享一样。

Conclusion: I want to share my app screen with other devices which have running the same app, JUST like Skype screen share.

推荐答案

您将需要一台服务器。这是一个漫长的过程。向您简要介绍详细信息

You will be needing a server for this. Its a long process. Briefing you with the overall details


  • 您可以在用户登录时获得相关信息。

  • 用户将尝试首先将图像发送到服务器。

  • 从用户屏幕连续获取屏幕截图图像。点击此链接

  • 转换图像到NSData

  • 从服务器检测到另一个用户(要与谁共享屏幕)。将数据发送给该用户。并将NSData转换为UIImage并相应地更新UI。

  • 循环流程。

  • You get the information when users are loggedIn.
  • User will try to send the image to the server first.
  • Get the screenshots images continuously from the user screen.follow this link
  • convert the image to NSData.
  • From server detect the other user(to whom screen is to be shared.) send the data to that user. And convert the NSData into UIImage and update the UI accordingly.
  • Loop the process.

// 用于拍摄屏幕截图

 UIGraphicsBeginImageContext(self.window.bounds.size);
    [self.window.layer renderInContext:UIGraphicsGetCurrentContext()];
    UIImage *image = UIGraphicsGetImageFromCurrentImageContext();
    UIGraphicsEndImageContext();
    NSData * data = UIImagePNGRepresentation(image);
    [data writeToFile:@"foo.png" atomically:YES];


这篇关于iOS应用中的屏幕共享?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆