Facebook with iOS5 and iOS6
By : Deadbot
Date : March 29 2020, 07:55 AM
Hope this helps The latest Facebook SDK supports both iOS versions just as well. If you're on iOS6, it will use the built-in authentication, otherwise it'll automatically fallback to the old "fast-app-switching" or Safari model. So if you implement the 3.1 SDK, you won't have to worry about how the user authenticates:
|
Compatibility of ios5 and ios6
By : Juliano
Date : March 29 2020, 07:55 AM
wish of those help The acceptable values for NSTextAlignment are: NSTextAlignmentLeft NSTextAlignmentCenter NSTextAlignmentRight NSTextAlignmentJustified NSTextAlignmentNatural code :
if([label respondsToSelector:@selector(attributedText)])
label.textAlignment = NSTextAlignmentNatural;
else
label.textAlignment = NSTextAlignmentLeft;
|
NSDate in iOS6 not the same as in iOS5
By : lh1234
Date : March 29 2020, 07:55 AM
I hope this helps . I had this code working for iOS5, but I just teste code :
Try this one , Definitely will get Proper solution:
NSDateFormatter *dateFormat = [[NSDateFormatter alloc] init];
[dateFormat setDateFormat:@"yyyy-MM-dd"];//as per your requirement
NSDateFormatter *timeFormat = [[NSDateFormatter alloc] init];
[timeFormat setDateFormat:@"HH:mm:ss"]; //as per your requirement
NSDate *now = [[NSDate alloc] init];
NSString *theDate = [dateFormat stringFromDate:now];
NSString *theTime = [timeFormat stringFromDate:now];
NSLog(@"theDate:%@ "theTime:%@" , theDate, theTime);
|
How can I use iOS6 fonts in iOS5
By : jkreuzig
Date : March 29 2020, 07:55 AM
Does that help No and Yes, you could just supply the font with your app. But you will need to buy a distribution license for the font, this will be very costly. Your best option is to fall back to an other font on iOS5 or just not support iOS5.
|
UIRefreshControl use in iOS6 but not in iOS5
By : Robinhgd
Date : March 29 2020, 07:55 AM
will be helpful for those in need If the compiler don't let you use it, then let you fool him. You can (and should) also switch from OS version detection to feature detection. All in all:
|