Post not yet marked as solved
APNS Content available push not received in iOS 15 device when app builds with Xcode 13.0, iOS 15 SDK.
Push payload data with content available:1 not working
{"aps":{"content-available":1},"update":"2|1"}
but normal notification message push working
{"aps":{"alert":"welcome"}}
is there any payload or configuration in the header field for the iOS 15 silent push message?
Post not yet marked as solved
When selecting HTML Date Field- Displayed the wrong date format with a text 'BE' Also in Date Picker Year field also with BE text and the Wrong Year.On Debug, identified Calendar format as Buddhist in iOS Device Settings. To manage Buddhist to Gregorian Format in code with Calendar identifier - NSCalendarIdentifierGregorianWhen pass converted date string(Buddhist to Gregorian) to HTML, still it's displayed with Buddhist Date Format.How forced to use Gregorian format for iOS date picker when clicking HTML date field?https://stackoverflow.com/questions/54996891/wkwebview-html-page-date-field-display-2544-behttps://i.stack.imgur.com/nfDow.pnghttps://i.stack.imgur.com/Avx4q.png
Post not yet marked as solved
Area:FoundationVersion/Build:iOS 11.3.1 and 11.1.2Summary:getting wrong DateTime Format In iPhone Device.we using DateTime format as yyyy-MM-dd HH:mm:ss and replace empty with Tand excepted result as 2018-07-13T15:07:36, but getting date time as 2018-07-13T3:07:36TPMSteps to Reproduce://Method to get DateTime String+ (NSString *)getCurrentLocalDateTime{ NSDate *localDate = [NSDate date]; NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init]; [dateFormatter setDateFormat:@"yyyy-MM-dd HH:mm:ss"]; NSString *dateString = [dateFormatter stringFromDate:localDate]; dateString = [dateString stringByReplacingOccurrencesOfString:@" " withString:@"T"]; NSLog(@"CURR: %@", dateString); return dateString; // yyyy-MM-ddTHH:mm:ss}Expected Results:Output Data must be - 2018-07-13T15:07:36Actual Results:Actual Data - 2018-07-13T3:07:36TPMKindly reply ASAP..