Free up to 1MM monthly messages. No credit card required.
This week, Jordan Zucker, iOS maestro at PubNub, shows us just how simple it is to get PubNub up and running in a brand-new iOS project using CocoaPods. Here’s the rundown:
Download the iOS Getting Started Git Repository from the video
CocoaPods is a dependency manager for Swift and Objective-C Cocoa projects that makes it super easy to add and update 3rd party libraries in iOS projects. This is by far the best way to load PubNub’s iOS SDK.
Without CocoaPods, adding a 3rd party library to an iOS project can take up to 40 minutes, assuming you know what you’re doing. CocoaPods cuts this down to only 2-3 minutes, so you can spend that time doing something more productive, like building your cool app.
There’s not a whole lot to it, really. Just a few simple steps:
pod install
from command line within project repository#import <PubNub/PubNub.h>
@property (nonatomic, strong) PubNub *client;
PNObjectEventListener
protocol to ViewController.mself.client
instance variable- (void)client:(PubNub *)client didReceiveMessage:(PNMessageResult *)message
callbackThis is only a simple walkthrough that shows you how to get PubNub up and running with a simple publish-subscribe function. For more in-depth information, visit our docs page for the PubNub iOS SDK. Happy coding!
A Notice of Privacy Practices (NPP) is one of the requirements of HIPAA and helps patients understand their personal data rights.
Michael Carroll
HIPAA violations can be financially expensive and devastating to a brand. Examine some examples of HIPAA violations, and learn...
Michael Carroll
HIPAA covered entities must follow the five technical safeguards to achieve HIPAA compliance and prevent data corruption.
Michael Carroll