Skip to content
This repository was archived by the owner on Jul 22, 2020. It is now read-only.

Commit 9214a74

Browse files
committed
Fixing up lint warnings.
1 parent 675c46a commit 9214a74

File tree

4 files changed

+7
-9
lines changed

4 files changed

+7
-9
lines changed

Iterable-iOS-SDK/IterableAPI.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -471,7 +471,7 @@ typedef NS_ENUM(NSInteger, PushServicePlatform) {
471471
@param templateId The templateId of the notification
472472
@param messageId The messageId of the notification
473473
*/
474-
- (void)trackInAppOpen:(NSNumber *)campaignId templateId:(NSNumber *)templateID messageId:(NSString *)messageId;
474+
- (void)trackInAppOpen:(NSNumber *)campaignId templateId:(NSNumber *)templateId messageId:(NSString *)messageId;
475475

476476
/**
477477
@method

Iterable-iOS-SDK/IterableAlertView.m

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -361,7 +361,7 @@ - (BOOL)pointInside:(CGPoint)point withEvent:(UIEvent *)event {
361361
362362
@abstract Sets the maximumWidth of the InApp
363363
364-
@param maximumWidth
364+
@param maximumWidth max width of the alert
365365
*/
366366
- (void)setMaximumWidth:(CGFloat)maximumWidth {
367367
_maximumWidth = maximumWidth;
@@ -401,7 +401,7 @@ - (void)updateHorizontalConstraint {
401401
402402
@abstract Sets the contentView
403403
404-
@param contentView
404+
@param contentView the content view
405405
*/
406406
- (void)setContentView:(UIView *)contentView {
407407
[self.contentView removeFromSuperview];
@@ -429,7 +429,7 @@ - (void)setContentView:(UIView *)contentView {
429429
430430
@abstract Sets the textFields
431431
432-
@param textFields
432+
@param textFields the text to display
433433
*/
434434
- (void)setTextFields:(NSArray *)textFields {
435435
for (UITextField *textField in self.textFields) {

Iterable-iOS-SDK/IterableInAppBaseViewController.h

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,6 @@
1515

1616
/**
1717
@abstract Custom ITEActionBlock
18-
19-
@param The NSString passed into the action block
2018
*/
2119
typedef void (^ITEActionBlock)(NSString *);
2220

@@ -37,14 +35,14 @@ typedef void (^ITEActionBlock)(NSString *);
3735
@param id the id of the button
3836
@param actionString the string representing the action button clicked
3937
*/
40-
-(void)ITEAddActionButton:(NSInteger)id actionString:(NSString *)actionStringValue;
38+
-(void)ITEAddActionButton:(NSInteger)id actionString:(NSString *)actionString;
4139

4240
/**
4341
@method
4442
4543
@abstract Sets the data for the viewController
4644
47-
@param jsonPayload the payload data
45+
@param callbackBlock the payload data
4846
*/
4947
-(void)ITESetCallback:(ITEActionBlock)callbackBlock;
5048

Iterable-iOS-SDK/IterableInAppManager.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
3131
@param dialogOptions the NSDictionary containing the dialog options
3232
@param trackParams The track params for the notification
33-
@param callback the callback to send after a button on the notification is clicked
33+
@param callbackBlock the callback to send after a button on the notification is clicked
3434
*/
3535
+(void) showIterableNotification:(NSDictionary *)dialogOptions trackParams:(IterableNotificationMetadata *)trackParams callbackBlock:(ITEActionBlock)callbackBlock;
3636

0 commit comments

Comments
 (0)