Say you have just come up with a great new product idea, and you're seriously considering turning it into a real product. Or maybe you have been working on a product for a while and are almost ready to launch it.
Usually, for both of these cases, developers create a prelaunch landing page before launching the product and set up a waitlist to collect user emails and monitor the demand for the product.
The prelaunch landing page is a great way to get your product idea out to the world and to get people interested in your product or idea. It also allows you to gather user feedback and get their input into your product.
Palzin Track makes it easy to set up and track a prelaunch waitlist for your product or idea using Objective-c. It is a simple event tracking tool that allows you to track, analyze and create reports from your waitlist data.
Connect Palzin Track to Objective-C
Simply use the following code snippets to send your waitlist signup events to Palzin Track. Make sure to replace the YOUR_API_TOKEN
with your API token and update the project and channel names.
Using Objective-C with NSURLSession
\#import
dispatch_semaphore_t sema = dispatch_semaphore_create(0);
NSMutableURLRequest \*request = \[NSMutableURLRequest requestWithURL:\[NSURL URLWithString:@"https://api.palzin.live/v1/log"\]
cachePolicy:NSURLRequestUseProtocolCachePolicy
timeoutInterval:10.0\];
NSDictionary \*headers = @{
@"Content-Type": @"application/json",
@"Authorization": @"Bearer YOUR_API_TOKEN"
};
\[request setAllHTTPHeaderFields:headers\];
NSData \*postData = \[\[NSData alloc\] initWithData:\[@"{\"project\":\"my-project\",\"channel\":\"auth\",\"event\":\"Waitlist Member Added\",\"description\":\"email: [email protected]\",\"icon\":\"⏰\",\"notify\":true}" dataUsingEncoding:NSUTF8StringEncoding\]\];
\[request setHTTPBody:postData\];
\[request setHTTPMethod:@"POST"\];
NSURLSession \*session = \[NSURLSession sharedSession\];
NSURLSessionDataTask \*dataTask = \[session dataTaskWithRequest:request
completionHandler:^(NSData \*data, NSURLResponse \*response, NSError \*error) {
if (error) {
NSLog(@"%@", error);
dispatch_semaphore_signal(sema);
} else {
NSHTTPURLResponse \*httpResponse = (NSHTTPURLResponse \*) response;
NSError \*parseError = nil;
NSDictionary \*responseDictionary = \[NSJSONSerialization JSONObjectWithData:data options:0 error:&parseError\];
NSLog(@"%@",responseDictionary);
dispatch_semaphore_signal(sema);
}
}\];
\[dataTask resume\];
dispatch_semaphore_wait(sema, DISPATCH_TIME_FOREVER);
Palzin Track is a versatile event tracking tool that isn't limited to specific use cases. It empowers you to monitor a wide range of events, whether it's tracking prelaunch waitlist signups or beta signups for a new feature or product. It works seamlessly with Objective-C and is very easy to use.
Furthermore, Palzin Track allows you to generate charts and analytics based on your data. For instance, you have the flexibility to craft a chart illustrating the daily or monthly influx of waitlist signups for your product.
Additionally, you have the capability to establish funnels for monitoring the conversion rate from waitlist signups to paying customers, features usage in your application. Furthermore, you can generate user journeys to observe how users interact with your product once they gain access to it.
Palzin Track is accessible on both desktop and mobile platforms, offering the convenience of real-time notifications upon the addition of waitlist signups. You also have the flexibility to opt for push notifications for any other events you wish to track from your Objective-C code.
Palzin Track reveals the human stories behind your data. Make user-centric decisions that drive growth.