Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Create ios app demo video [closed]

Tags:

ios

iphone

What is the best way to record a video for ios application ? I have a business application and now i want to create a some demo video for our clients, any suggestions?

like image 519
taffarel Avatar asked Nov 04 '22 12:11

taffarel


1 Answers

If you want to do it in simulator, Apple's quicktime player has an option to record screen activities. Try with that. In an empty background or so, start your simulator and run the quicktime player.In order to run, go to file menu and start the new screen recording option. It has an option to select only a portion of the screen. There were many other tools. Check this link. I have used Snapz Pro X to record the video of iOS apps in simulator. If you want to do it in device, try this.

To do it programmatically, try this.

In that code, change

[self.layer renderInContext:context];

to

[[self.layer presentatationLayer] renderInContext:context];
like image 161
iDev Avatar answered Nov 13 '22 15:11

iDev