diff --git a/Iterable-iOS-SDK/IterableAPI.h b/Iterable-iOS-SDK/IterableAPI.h index 63a2e18..6cd85e9 100644 --- a/Iterable-iOS-SDK/IterableAPI.h +++ b/Iterable-iOS-SDK/IterableAPI.h @@ -471,7 +471,7 @@ typedef NS_ENUM(NSInteger, PushServicePlatform) { @param templateId The templateId of the notification @param messageId The messageId of the notification */ -- (void)trackInAppOpen:(NSNumber *)campaignId templateId:(NSNumber *)templateID messageId:(NSString *)messageId; +- (void)trackInAppOpen:(NSNumber *)campaignId templateId:(NSNumber *)templateId messageId:(NSString *)messageId; /** @method diff --git a/Iterable-iOS-SDK/IterableAlertView.m b/Iterable-iOS-SDK/IterableAlertView.m index 08e1d6a..a08dda1 100644 --- a/Iterable-iOS-SDK/IterableAlertView.m +++ b/Iterable-iOS-SDK/IterableAlertView.m @@ -361,7 +361,7 @@ - (BOOL)pointInside:(CGPoint)point withEvent:(UIEvent *)event { @abstract Sets the maximumWidth of the InApp - @param maximumWidth + @param maximumWidth max width of the alert */ - (void)setMaximumWidth:(CGFloat)maximumWidth { _maximumWidth = maximumWidth; @@ -401,7 +401,7 @@ - (void)updateHorizontalConstraint { @abstract Sets the contentView - @param contentView + @param contentView the content view */ - (void)setContentView:(UIView *)contentView { [self.contentView removeFromSuperview]; @@ -429,7 +429,7 @@ - (void)setContentView:(UIView *)contentView { @abstract Sets the textFields - @param textFields + @param textFields the text to display */ - (void)setTextFields:(NSArray *)textFields { for (UITextField *textField in self.textFields) { diff --git a/Iterable-iOS-SDK/IterableInAppBaseViewController.h b/Iterable-iOS-SDK/IterableInAppBaseViewController.h index b3c951c..9c85980 100644 --- a/Iterable-iOS-SDK/IterableInAppBaseViewController.h +++ b/Iterable-iOS-SDK/IterableInAppBaseViewController.h @@ -15,8 +15,6 @@ /** @abstract Custom ITEActionBlock - - @param The NSString passed into the action block */ typedef void (^ITEActionBlock)(NSString *); @@ -37,14 +35,14 @@ typedef void (^ITEActionBlock)(NSString *); @param id the id of the button @param actionString the string representing the action button clicked */ --(void)ITEAddActionButton:(NSInteger)id actionString:(NSString *)actionStringValue; +-(void)ITEAddActionButton:(NSInteger)id actionString:(NSString *)actionString; /** @method @abstract Sets the data for the viewController - @param jsonPayload the payload data + @param callbackBlock the payload data */ -(void)ITESetCallback:(ITEActionBlock)callbackBlock; diff --git a/Iterable-iOS-SDK/IterableInAppManager.h b/Iterable-iOS-SDK/IterableInAppManager.h index 29d84be..25239df 100644 --- a/Iterable-iOS-SDK/IterableInAppManager.h +++ b/Iterable-iOS-SDK/IterableInAppManager.h @@ -30,7 +30,7 @@ @param dialogOptions the NSDictionary containing the dialog options @param trackParams The track params for the notification - @param callback the callback to send after a button on the notification is clicked + @param callbackBlock the callback to send after a button on the notification is clicked */ +(void) showIterableNotification:(NSDictionary *)dialogOptions trackParams:(IterableNotificationMetadata *)trackParams callbackBlock:(ITEActionBlock)callbackBlock;