Create .swf within iPhone app - iphone

Can't find anything about this anywhere (maybe there's a good reason...) - does anyone know if there are any libraries for creating simple SWFs in iOS? I'd like to be able to let the user build a simple animation, then email it off as a SWF. If it's not possible, I'll probably go down the animated gif route.
Thanks for any help!

You might use libsswf which has a c interface.
Check here.

Related

Best way to convert this flash application to iphone compatible?

I have an interactive flash animation which i need to be able to use on an iPhone, embedded within an iPhone app.
I'm not able to link the animation here but a screenshot of the interface (which is pretty self explanitory) can be found here - http://imgur.com/i4bUgTB
It's a very simple interaction with just dragging answers into boxes and checking whether the answers are correct. My question is what would the easiest/best way to convert this to something that can be used on the iPhone?
My initial thoughts would be to use Canvas but i've not looked deeply into what it can do so I was hoping that someone could point me in the right direction.
Thanks for your advice.
Flash embeds logic inside it via scripts. What you are referring to is not an "animation" but a working application.
You should check this link if you use Actionscript 3, I never did that myself.
If the scenario of the app is as you describe, then using your flash sources inside your iOS app shouldn't be too difficult to achieve IMHO.

Page-Based app load epub

I am new to iphone app developing and need to display an epub file in an app that I am working on. I would like to use UIPageViewController as that allows paging ect. As of yet I have not been able to figure out how to load the content into a uiwebview and still get the paging function. If someone could point me to any sample code that would help me I would greatly appreciate it.
You really can not use that, since you need ot use UIWebView. I do not think that any other view offers enough of a head start to make it worth it not to use a UIWebView.
There was a lot of discussion about this found here:
Reading ePub format
also see this:
Best approch for creating ePub reader similar to iBook or Stanza application

using web view in iphone

this might sound silly but since i am new to iPhone i wanted to ask this question... :P
Where is the UIWebView best used? I mean which type of application?
Could i use that if i wanted to display a video in some part of the screen rather than fullscreen which MPmediaPlayer is really good at?
Thanks :)
The only places I have seen UIWebView really used in a way that is right is for help pages. Developers will make this page call a FAQ page hosted on their servers so that they can change the contents frequently without going back to Apple for review.

UIImagePickerController with my images

I'm developing an app and I wish use the UIImagePickerController but I wish let the user to choose some images saved into my app, not the photolibrary.. it's possible to do this??
thanks in advance!!
The short answer is that that's not the way UIImagePickerController is designed, unfortunately. I've seen several projects have to reimplement this feature in their own (different) ways before moving forwards.
As a good first pass tutorial at this problem I would recommend this site
It relies on a simple UIScrollView and custom views to do the job. I've also seen solutions to the problem that use custom UITableViews as well as a couple other solutions.
No you can't. You can either select from the photo library or take a new picture. This is probably one of the most annoying things I've come across in the API. If you have to have this functionality, you will have to find an open source version or develop your own UIImagePickerController. I have used this with some success.

integrating camera and email

I want to develop an application that will automatically send an email as soon as an image is captured by the camera.
can anybody suggest some ideas regarding this???
Really easy to do. The
Iphone developer's cookbook has some "recipes" that will get you pointed in the right direction on how to do this.