Related questions
Base64 Decoding in iOS 7+
I have Encoded text(NSString) using NSData Class new API which is Added in iOS7.
using this
- (NSData *)dataUsingEncoding:(NSStringEncoding)encoding;
here is my code
NSString *base64EncodedString = [[myText dataUsingEncoding:NSUTF8StringEncoding] base64EncodedStringWithOptions:0];
NSLog(@"%@", base64EncodedString);
I am …
URL Scheme "Open Settings" ios
I know this question has been asked so many times. The answers say that this is not available in Xcode > 5.x. but I saw some apps that can use this(Go to Settings)(iOS7). Is there any way to …