From 8725b94cf06c5c151b91bcd6026b5e49749b8db1 Mon Sep 17 00:00:00 2001 From: Nikita Lutsenko Date: Mon, 16 Feb 2015 21:36:17 +0000 Subject: [PATCH] Add nullability annotations to PFProductTableViewController. --- .../PFProductTableViewController.h | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/ParseUI/Classes/ProductTableViewController/PFProductTableViewController.h b/ParseUI/Classes/ProductTableViewController/PFProductTableViewController.h index 78cc4c2..fa5ce55 100644 --- a/ParseUI/Classes/ProductTableViewController/PFProductTableViewController.h +++ b/ParseUI/Classes/ProductTableViewController/PFProductTableViewController.h @@ -19,8 +19,13 @@ * */ +#import + +#import #import +PFUI_ASSUME_NONNULL_BEGIN + /*! `PFProductTableViewController` displays in-app purchase products stored on Parse. In addition to setting up in-app purchases in iTunes Connect, the app developer needs @@ -38,3 +43,5 @@ - (instancetype)initWithStyle:(UITableViewStyle)style NS_DESIGNATED_INITIALIZER; @end + +PFUI_ASSUME_NONNULL_END