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

Commit e160718

Browse files
davidtruongvbabenkoru
authored andcommitted
removed deprecated in-app view controllers
1 parent ef50c37 commit e160718

13 files changed

+18
-2335
lines changed

Artifacts/include/Iterable-iOS-SDK/IterableAPI.h

Lines changed: 18 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -270,14 +270,30 @@ typedef NS_ENUM(NSInteger, PushServicePlatform) {
270270
271271
@param dataFields Data fields to store in the user profile
272272
@param mergeNestedObjects Merge top level objects instead of overwriting
273-
@param onSuccess OnSuccessHandler to invoke if disabling the token is successful
274-
@param onFailure OnFailureHandler to invoke if disabling the token fails
273+
@param onSuccess OnSuccessHandler to invoke if update is successful
274+
@param onFailure OnFailureHandler to invoke if update fails
275275
276276
@see OnSuccessHandler
277277
@see OnFailureHandler
278278
*/
279279
- (void)updateUser:(NSDictionary *)dataFields mergeNestedObjects:(BOOL)mergeNestedObjects onSuccess:(OnSuccessHandler)onSuccess onFailure:(OnFailureHandler)onFailure;
280280

281+
/*!
282+
@method
283+
284+
@abstract Updates the current user's email.
285+
286+
@discussion Also updates the current email in this IterableAPI instance if the API call was successful.
287+
288+
@param newEmail New email
289+
@param onSuccess OnSuccessHandler to invoke if update is successful
290+
@param onFailure OnFailureHandler to invoke if update fails
291+
292+
@see OnSuccessHandler
293+
@see OnFailureHandler
294+
*/
295+
- (void)updateEmail:(NSString *)newEmail onSuccess:(OnSuccessHandler)onSuccess onFailure:(OnFailureHandler)onFailure;
296+
281297
/////////////////////////
282298
/// @name Tracking events
283299
/////////////////////////

Artifacts/libIterable-iOS-SDK.a

-1.98 MB
Binary file not shown.

Iterable-iOS-SDK.xcodeproj/project.pbxproj

Lines changed: 0 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -41,14 +41,7 @@
4141
16513DDE1D89EECC00C205B3 /* IterableInAppManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 16513DD81D89EECC00C205B3 /* IterableInAppManager.h */; };
4242
16513DDF1D89EECC00C205B3 /* IterableInAppManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 16513DD91D89EECC00C205B3 /* IterableInAppManager.m */; };
4343
1653A80E1D88B25200690298 /* IterableConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 1653A80B1D88B25200690298 /* IterableConstants.h */; };
44-
1653A80F1D88B25200690298 /* IterableFullScreenViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 1653A80C1D88B25200690298 /* IterableFullScreenViewController.h */; };
45-
1653A8101D88B25200690298 /* IterableFullScreenViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 1653A80D1D88B25200690298 /* IterableFullScreenViewController.m */; };
4644
16E02BAD1E035EA400644C15 /* IterableConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = 16E02BAC1E035EA400644C15 /* IterableConstants.m */; };
47-
16ED2E481D9056E500ADCAEC /* IterableInAppBaseViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 16ED2E471D9056E500ADCAEC /* IterableInAppBaseViewController.m */; };
48-
16ED2E4D1D908D5500ADCAEC /* IterableAlertView.h in Headers */ = {isa = PBXBuildFile; fileRef = 16ED2E491D908D5500ADCAEC /* IterableAlertView.h */; };
49-
16ED2E4E1D908D5500ADCAEC /* IterableAlertView.m in Sources */ = {isa = PBXBuildFile; fileRef = 16ED2E4A1D908D5500ADCAEC /* IterableAlertView.m */; };
50-
16ED2E4F1D908D5500ADCAEC /* IterableAlertViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 16ED2E4B1D908D5500ADCAEC /* IterableAlertViewController.h */; };
51-
16ED2E501D908D5500ADCAEC /* IterableAlertViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 16ED2E4C1D908D5500ADCAEC /* IterableAlertViewController.m */; };
5245
6804B8601AC0F363000A126B /* CommerceItem.m in Sources */ = {isa = PBXBuildFile; fileRef = 6804B85F1AC0F363000A126B /* CommerceItem.m */; };
5346
6845F7331AC3831B0043629D /* SystemConfiguration.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6845F7321AC3831B0043629D /* SystemConfiguration.framework */; };
5447
68E32EF61AC21D37000CEBE1 /* CommerceItem.h in Headers */ = {isa = PBXBuildFile; fileRef = 6804B8651AC10426000A126B /* CommerceItem.h */; settings = {ATTRIBUTES = (Public, ); }; };
@@ -104,15 +97,7 @@
10497
16513DD81D89EECC00C205B3 /* IterableInAppManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IterableInAppManager.h; sourceTree = "<group>"; };
10598
16513DD91D89EECC00C205B3 /* IterableInAppManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = IterableInAppManager.m; sourceTree = "<group>"; };
10699
1653A80B1D88B25200690298 /* IterableConstants.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IterableConstants.h; sourceTree = "<group>"; };
107-
1653A80C1D88B25200690298 /* IterableFullScreenViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IterableFullScreenViewController.h; sourceTree = "<group>"; };
108-
1653A80D1D88B25200690298 /* IterableFullScreenViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = IterableFullScreenViewController.m; sourceTree = "<group>"; };
109100
16E02BAC1E035EA400644C15 /* IterableConstants.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = IterableConstants.m; sourceTree = "<group>"; };
110-
16ED2E461D90569500ADCAEC /* IterableInAppBaseViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = IterableInAppBaseViewController.h; sourceTree = "<group>"; };
111-
16ED2E471D9056E500ADCAEC /* IterableInAppBaseViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = IterableInAppBaseViewController.m; sourceTree = "<group>"; };
112-
16ED2E491D908D5500ADCAEC /* IterableAlertView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IterableAlertView.h; sourceTree = "<group>"; };
113-
16ED2E4A1D908D5500ADCAEC /* IterableAlertView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = IterableAlertView.m; sourceTree = "<group>"; };
114-
16ED2E4B1D908D5500ADCAEC /* IterableAlertViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IterableAlertViewController.h; sourceTree = "<group>"; };
115-
16ED2E4C1D908D5500ADCAEC /* IterableAlertViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = IterableAlertViewController.m; sourceTree = "<group>"; };
116101
19153EFC2173C02102CEADDF /* Pods-Iterable-iOS-SDKTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Iterable-iOS-SDKTests.release.xcconfig"; path = "Pods/Target Support Files/Pods-Iterable-iOS-SDKTests/Pods-Iterable-iOS-SDKTests.release.xcconfig"; sourceTree = "<group>"; };
117102
6804B85F1AC0F363000A126B /* CommerceItem.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CommerceItem.m; sourceTree = "<group>"; };
118103
6804B8651AC10426000A126B /* CommerceItem.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CommerceItem.h; sourceTree = "<group>"; };
@@ -223,14 +208,6 @@
223208
1608832F1F840B5F00318578 /* IterableInAppHTMLViewController.m */,
224209
16513DD81D89EECC00C205B3 /* IterableInAppManager.h */,
225210
16513DD91D89EECC00C205B3 /* IterableInAppManager.m */,
226-
16ED2E461D90569500ADCAEC /* IterableInAppBaseViewController.h */,
227-
16ED2E471D9056E500ADCAEC /* IterableInAppBaseViewController.m */,
228-
16ED2E491D908D5500ADCAEC /* IterableAlertView.h */,
229-
16ED2E4A1D908D5500ADCAEC /* IterableAlertView.m */,
230-
1653A80C1D88B25200690298 /* IterableFullScreenViewController.h */,
231-
1653A80D1D88B25200690298 /* IterableFullScreenViewController.m */,
232-
16ED2E4B1D908D5500ADCAEC /* IterableAlertViewController.h */,
233-
16ED2E4C1D908D5500ADCAEC /* IterableAlertViewController.m */,
234211
);
235212
name = InAppNotifications;
236213
sourceTree = "<group>";
@@ -264,15 +241,12 @@
264241
buildActionMask = 2147483647;
265242
files = (
266243
1653A80E1D88B25200690298 /* IterableConstants.h in Headers */,
267-
1653A80F1D88B25200690298 /* IterableFullScreenViewController.h in Headers */,
268244
161D98BC20236BC700E91846 /* IterableDeeplinkManager.h in Headers */,
269245
0937342E1A1D99C000C950B6 /* IterableAPI.h in Headers */,
270-
16ED2E4D1D908D5500ADCAEC /* IterableAlertView.h in Headers */,
271246
68E32EF61AC21D37000CEBE1 /* CommerceItem.h in Headers */,
272247
093028D21D1B942100E7CFBE /* IterableNotificationMetadata.h in Headers */,
273248
093028D11D1B93EB00E7CFBE /* NSData+Conversion.h in Headers */,
274249
093028D31D1B958700E7CFBE /* IterableLogging.h in Headers */,
275-
16ED2E4F1D908D5500ADCAEC /* IterableAlertViewController.h in Headers */,
276250
16513DDE1D89EECC00C205B3 /* IterableInAppManager.h in Headers */,
277251
160883301F840B5F00318578 /* IterableInAppHTMLViewController.h in Headers */,
278252
);
@@ -483,14 +457,10 @@
483457
buildActionMask = 2147483647;
484458
files = (
485459
09CCB9301D07A7EA003EB75D /* IterableNotificationMetadata.m in Sources */,
486-
16ED2E481D9056E500ADCAEC /* IterableInAppBaseViewController.m in Sources */,
487460
16513DDF1D89EECC00C205B3 /* IterableInAppManager.m in Sources */,
488-
16ED2E4E1D908D5500ADCAEC /* IterableAlertView.m in Sources */,
489461
094995471A8588400047E59B /* NSData+Conversion.m in Sources */,
490-
16ED2E501D908D5500ADCAEC /* IterableAlertViewController.m in Sources */,
491462
161D98BD20236BC700E91846 /* IterableDeeplinkManager.m in Sources */,
492463
093734271A1D701F00C950B6 /* IterableAPI.m in Sources */,
493-
1653A8101D88B25200690298 /* IterableFullScreenViewController.m in Sources */,
494464
160883311F840B5F00318578 /* IterableInAppHTMLViewController.m in Sources */,
495465
6804B8601AC0F363000A126B /* CommerceItem.m in Sources */,
496466
16E02BAD1E035EA400644C15 /* IterableConstants.m in Sources */,

Iterable-iOS-SDK/IterableAlertView.h

Lines changed: 0 additions & 95 deletions
This file was deleted.

0 commit comments

Comments
 (0)