Screen sharing in native iOS app using WebRTC [closed] - ios

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 4 years ago.
Improve this question
I'm exploring WebRTC, I made a demo using it and it works perfectly, but now I want to share my app screen using WebRTC in my native project.
Is it possible?. I searched many documents but I didn't find any solution.

Yes, it is possible (not sure about existing open source projects). But you can refactor the apprtc-ios into streaming the screen snapshots instead of the camera feed. Here are some useful resources:
https://webrtc.org/native-code/ios/
https://github.com/ISBX/apprtc-ios

Apple's ReplayKit/ReplayKit2 allows you to stream from the screen or the camera to the air. You should try using that with WebRTC.
Have a look here :- https://github.com/StraaS/StraaS-iOS-sdk/wiki/Live-Streaming-with-Apple's-ReplayKit

You may want to look Apple's ReplayKit. Since iOS 11, you can record your screen but also choose to which ReplayKit Provider. I think TeamViewer already uses this on iOS.
https://developer.apple.com/documentation/replaykit/rpscreenrecorder
https://forums.developer.apple.com/thread/89165

Related

How to convert website in to iOS mobile app? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 6 years ago.
Improve this question
We have already build a website. Is there any way to convert that website into mobile iOS app and make sure that it follows the iOS standards?
It is technically possible (easy, even) but Apple's guidelines specifically say that apps that are just repackaging of a website will be rejected, so no, your approach is a non-starter.
This can be doable using cordova as a wrapper application. But this application will be rejected by Apple. We faced same issue couple of months back, this kind of app accepted in google play but not in apple app store.

Can I code an app that share a music stream on Iphone ( using the phone as a router ) [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 4 years ago.
Improve this question
I'm an novice apple developper, actually working on Ios project for iOS 9 on xcode. I'm working as a freelance for a client, and this client needs an app to stream music.
This app must be capable to share music, it means :
A user has a music on his phone and turn on the "share mode", wich enable other users around him to connect to his iPhone and listen to the same music.
So my question is, can i do that in therms of code ? (turn on router on my iphone, allows connections from other phone ( even if its not an iphone ) and then send the music ( the music stream ).
It may be a too much technical question for this community, but i don't know in wihch stack community post it.
Thanks for any anwer.
Yes you can. I'd recommend checking out the Multipeer Connectivity framework from apple. You can do exactly what you're asking about. The link below talks about your exact scenario - in objective-c, but it works the same way in swift.
https://robots.thoughtbot.com/streaming-audio-to-multiple-listeners-via-ios-multipeer-connectivity

Background GPS in iOS mobile safari [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 9 years ago.
Improve this question
I know it is possible to have an iOS app running in the background which transmits GPS data periodically.
I was wondering if the same is possible if a user is on a webpage in mobile safari. Can watchPosition be used even if the user is not actively on the webpage but the tab is open in mobile safari (i.e. in the background)?
Yes, it is possible, but you app would have to be running in the background for it to work. You would use the same Location Awareness API that Apple provides and run it in the background, so that even when your app closes, it is still running.
You can see the answer given for this question for this question.
By using the instructions laid out by Apple, you can achieve this, but your app has to be run for it to work. So if they never start your app, no location tracking.

Copy iOS Library Music over Videos Allowed in App Store? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 4 years ago.
Improve this question
I am working on an iOS video editing app, and looking into any limitations of putting audio over the video. So my question is, if it possible(are we allowed to) use songs or clips from songs in the music library? Will this kind of feature get rejected when being submitted to the app store?
Thanks in advance for the help!
I cant see a problem with this - Its no different to DJ apps on the App Store reading music and allowing the user to edit them. The only issue is if user was to push to YouTube etc then issues may occur

What frameworks can be used to create mobile web apps that are indistinguishable from native iOS apps [closed]

Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 11 years ago.
Improve this question
I'd like to know which framework you use to create mobile web applications that are - from a user's point of view - virtually indistinguishable from a native iOS app. Please provide a link do an actual application that has been built with said framework.
I mean more than just the look of a navigation bar and a back button, but an app that also feels like a native app, with the same smooth scrolling and transition animations of native apps.
To clarify: This is research in connection with this article: http://www.springenwerk.com/2011/09/thoughts-on-mobile-ui-design.html
The Financial Times app is indistinguishable. That said, I think they discontinued the App store app.
http://apps.ft.com/ftwebapp/
You don't even see the safari browser bar in the web app. I don't know how that works though. Not a web - dev.

Resources