You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by sh...@apache.org on 2015/09/16 00:34:23 UTC

ios commit: CB-9638 - Cordova/NSData+Base64.h missing from cordova-ios 4.x

Repository: cordova-ios
Updated Branches:
  refs/heads/master f0df5e00d -> 6254edf2e


CB-9638 - Cordova/NSData+Base64.h missing from cordova-ios 4.x


Project: http://git-wip-us.apache.org/repos/asf/cordova-ios/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-ios/commit/6254edf2
Tree: http://git-wip-us.apache.org/repos/asf/cordova-ios/tree/6254edf2
Diff: http://git-wip-us.apache.org/repos/asf/cordova-ios/diff/6254edf2

Branch: refs/heads/master
Commit: 6254edf2ecbdb2bc323a6f3c745c5cf516ae7a6c
Parents: f0df5e0
Author: Shazron Abdullah <sh...@apache.org>
Authored: Tue Sep 15 15:37:04 2015 -0700
Committer: Shazron Abdullah <sh...@apache.org>
Committed: Tue Sep 15 15:37:04 2015 -0700

----------------------------------------------------------------------
 guides/API changes in 4.0.md | 19 +++++++++++++++++++
 1 file changed, 19 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-ios/blob/6254edf2/guides/API changes in 4.0.md
----------------------------------------------------------------------
diff --git a/guides/API changes in 4.0.md b/guides/API changes in 4.0.md
index e54c88a..2a8f99d 100644
--- a/guides/API changes in 4.0.md	
+++ b/guides/API changes in 4.0.md	
@@ -88,3 +88,22 @@ Methods:
 
     + (CDVPluginResult*)resultWithStatus:(CDVCommandStatus)statusOrdinal messageAsNSInteger:(NSInteger)theMessage;
     + (CDVPluginResult*)resultWithStatus:(CDVCommandStatus)statusOrdinal messageAsNSUInteger:(NSUInteger)theMessage;
+
+
+## NSData+Base64.h
+
+
+### Removed:
+
+Methods:
+
+    + (NSData*)dataFromBase64String:(NSString*)aString CDV_DEPRECATED(3.8 .0, "Use cdv_dataFromBase64String");
+    - (NSString*)base64EncodedString CDV_DEPRECATED(3.8 .0, "Use [NSData cdv_base64EncodedString]");
+    + (NSData*)cdv_dataFromBase64String:(NSString*)aString;
+    - (NSString*)cdv_base64EncodedString;
+    
+### Upgrade Notes:
+
+Plugin authors are encouraged to use [NSJSONSerialization](https://developer.apple.com/library/ios/documentation/Foundation/Reference/NSJSONSerialization_Class/) instead.
+
+


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@cordova.apache.org
For additional commands, e-mail: commits-help@cordova.apache.org