messageUI.framework useful in sending pictures? - ios

Can one use messageUI.framework in swift to send photos to someone the way snapchat does? I've done it using parse, but looking for a different way.

You can not use messageUI.framework for sending the photos.
if you want snapchat functionality you should use XMPP.
This is iOS framework for XMPP
https://github.com/robbiehanson/XMPPFramework also, you should require XMPP server
For XMPP server please, check openfire and ejabberd

Related

How to achieve file sharing through xmpp in ios

I am working on a chat application through xmpp i have done one to one and MultiUser Chat. So please tell me how to do file sharing in XMPP.

How to transfer file using XMPP with openfire server in ios?

I need help to implement file transfer using openfire and xmpp.
You need to implement XMPP-0096. See documentation here http://www.xmpp.org/extensions/xep-0096.html

XEP-0166: Jingle protocol implementation for voice/video chat in iOS

I have already implemented chat with text message using XMPP framework for iOS. But, now I want to implement voice/video chat using XMPP framework in iOS. So, anybody know about how to implement XEP-0166: Jingle Protocol with available XMPP framework in iOS/Objective-C? Thanks in advance.
http://oriolrius.cat/blog/wp-content/uploads/2009/10/Oreilly.XMPP.The.Definitive.Guide.May.2009.pdf
Refer This book regarding XMPPFramework. In this book all things are described regarding all fetchers provided by XMPP like one to one messaging, file sharing, voice call, video call and etc.
In this book how to send stanzas to server and client are described in detail.
hope this book will help u.

XMPP client library for ios with BOSH support

I am looking for a Objective C XMPP client library with BOSH support for my iPad app. I came across XMPPFramework but I learned that it does not have BOSH support or does it?
Can any one point me to some library or how i can use XMPPFrameWork with BOSH support?
I was not able to find one for my project utilizing Jabber/XMPP so I ended up using libstrophe for my project. It works perfectly, if you need an Objective-C object, you can simply wrap the method calls with senders and receivers.

How to access an IMAP Server using the iOS SDK

Are there any classes/frameworks within the iOS SDK which can be used to easily access an IMAP server?
I do NOT what to write a new Mail app. I just need the basic IMAP functions like check for new message, download messages, etc.
So far I have found MailCore but as far as I can tell it is for MacOS and not iOS.
Thank you very much for your help!
Andrei
There is a remail project so you can look into it... there is no public iOS framework for dealing with IMAP as much as I know...

Resources