Chat application with Swift + Parse - swift

have anyone an idea how i can create a iOS chat app with Swift and use Parse as backEnd? I found this: https://layer.com but it is written in objective-C. There is a swift version too, but it is full of issues and I don't know how to solve them.

Below Reference links may help you:
An Example iOS Chat Application with Parse, written in Swift
https://github.com/huyouare/SwiftParseChat

Related

Swift Coordinate System View

I recently checked out the Swift Playgrounds App available inside the App Store where I stumbled across this interactive coordinate system view similar to the one that can be found inside of Xcode playgrounds on the Mac.
My question is if this framework is accessible for developers or if it's something Apple developed internally for the playground?
Thanks in advance.
It seems like apple is using it internally. But you can build it yourself see this blogpost for inspiration. However it's written in Swift 3 but it should be easily transferable to Swift 4.

Can Swifter be used for a tvOS app?

I am trying to access twitter data for a social media app for tvOS as a school project. I have come across Swifter (https://github.com/mattdonnelly/Swifter) and noted that it does only say it supports iOS and Mac. I was wondering if there is any workaround to use this in tvOS since they are all written in the same language?
(as you can tell I'm pretty new to this)
Looking at the issues in the repo it appears somebody is already working on adding tvOS support so hopefully that might be ready in time for you.
In fact, somebody may have already done it: https://github.com/kindoblue/Swifter

Salesforce Api implementation on iPhone

I am implementing salesforce api in my project. I downloaded code from the below link
https://github.com/developerforce/Force.com-Toolkit-for-iOS
But the problem is that i want this api on iPhone not on iPad.
When i am going to convert it on iPhone. I am fail. It is typical to convert it because of difference of code like split view etc.
I dont want split view just simple api. If you guys source code of it then share. Thanks.
(Note: I am using xcode not phonegap)
I think you're confusing yourself by looking at the sample app, the actual api library itself doesn't use splitviews as far as i know. Concentrate on what's in the ZKSforce directory, and not the sample SVNTest app.
There is a document link
:
http://forcedotcom.github.com/MobileContainer-iOS/Documentation/SalesforceSDK/Classes/SFRestAPI.html
here is the code:
http://forcedotcom.github.com/SalesforceMobileSDK-iOS/Documentation/SalesforceSDK/Classes/SFRestAPI.html#//api/name/requestForCreateWithObjectType:fields:

Tutorial for MGTwitterEngine for Iphone

Is there a good tutorial available to use MGTwitterEngine on the Iphone?
Call me dumb but I cant figure it out.
All I want to do is update the users twitter status through my Iphone app.
Basic Authentication is not supported any more. So how do i do this? Im looking for the easiest most simple way available.
try this:
http://icodeblog.com/2010/09/16/dealing-with-the-twitter-oauth-apocalypse/

Using the Twitter API within iPhone application

I want to integrate Twitter API into my iphone application. I have read about JSON framework with iPhone SDK 2.2. But I am new to this type of application. Can anybody please explain how to integrate this Twitter's APIs with my application and how to use it. Also tell me how to open "svn checkout http://json-framework.googlecode.com/svn/trunk/ json-framework-read-only" I have downloaded this code, but I'm not sure where to go from here. Please help me in this issue. Thanks in advance.
Try MGTwitterEngine.
You might consider looking at the Stanford iPhone programming course for some basic "how to use an API" type information.
Their in-class sample app is a low-end Twitter app that uses the JSON library, you might find that a useful example.