Base64 icon indicating copy to clipboard operation
Base64 copied to clipboard

[DEPRECATED]

Results 7 Base64 issues
Sort by recently updated
recently updated
newest added

hi nicklockwood~ I do not know why this warning shown ? Please give me some help, thx

Warning "'base64Encoding' is deprecated: first deprecated in iOS 7.0" in iOS 8.1 fixed.

Added appropriate (NSUInteger) casts to silence Value Conversion warnings.

``` + (NSString *)stringWithBase64EncodedString:(NSString *)string { NSData *data = [NSData dataWithBase64EncodedString:string]; if (data) { return [[self alloc] initWithData:data encoding:NSUTF8StringEncoding]; } return nil; } ``` ![screen shot 2014-02-07 at 3 36...

This function seems to pass line width as 0 but in base64EncodedStringWithWrapWidth it is still doing line wrapping.