Commit 94a80117 by Sebastián Katzer

Change code formatting

parent 71e71809
......@@ -98,9 +98,12 @@
/**
* @private
* Erstellt die Notification und setzt deren Eigenschaften.
*/
- (UILocalNotification*) prepareNotification:(NSMutableDictionary*)options
{
UILocalNotification* notification = [[UILocalNotification alloc] init];
double timestamp = [[options objectForKey:@"date"] doubleValue];
NSString* msg = [options objectForKey:@"message"];
NSString* title = [options objectForKey:@"title"];
......@@ -110,20 +113,17 @@
NSInteger badge = [[options objectForKey:@"badge"] intValue];
NSDate* date = [NSDate dateWithTimeIntervalSince1970:timestamp];
UILocalNotification* notification = [[UILocalNotification alloc] init];
notification.fireDate = date;
notification.timeZone = [NSTimeZone defaultTimeZone];
notification.repeatInterval = [[[self repeatDict] objectForKey: repeat] intValue];
if ([msg isEqualToString:@""]) {
//No message, we just want to update the badge
notification.alertBody = nil;
} else {
if (![msg isEqualToString:@""])
{
notification.alertBody = title ? [NSString stringWithFormat:@"%@\n%@", title, msg] : msg;
}
if (sound != (NSString *) [NSNull null]) {
if (sound != (NSString *) [NSNull null])
{
notification.soundName = [sound isEqualToString:@""] ? UILocalNotificationDefaultSoundName : sound;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment