Commit 94a80117 by Sebastián Katzer

Change code formatting

parent 71e71809
...@@ -98,9 +98,12 @@ ...@@ -98,9 +98,12 @@
/** /**
* @private * @private
* Erstellt die Notification und setzt deren Eigenschaften.
*/ */
- (UILocalNotification*) prepareNotification:(NSMutableDictionary*)options - (UILocalNotification*) prepareNotification:(NSMutableDictionary*)options
{ {
UILocalNotification* notification = [[UILocalNotification alloc] init];
double timestamp = [[options objectForKey:@"date"] doubleValue]; double timestamp = [[options objectForKey:@"date"] doubleValue];
NSString* msg = [options objectForKey:@"message"]; NSString* msg = [options objectForKey:@"message"];
NSString* title = [options objectForKey:@"title"]; NSString* title = [options objectForKey:@"title"];
...@@ -110,20 +113,17 @@ ...@@ -110,20 +113,17 @@
NSInteger badge = [[options objectForKey:@"badge"] intValue]; NSInteger badge = [[options objectForKey:@"badge"] intValue];
NSDate* date = [NSDate dateWithTimeIntervalSince1970:timestamp]; NSDate* date = [NSDate dateWithTimeIntervalSince1970:timestamp];
UILocalNotification* notification = [[UILocalNotification alloc] init];
notification.fireDate = date; notification.fireDate = date;
notification.timeZone = [NSTimeZone defaultTimeZone]; notification.timeZone = [NSTimeZone defaultTimeZone];
notification.repeatInterval = [[[self repeatDict] objectForKey: repeat] intValue]; notification.repeatInterval = [[[self repeatDict] objectForKey: repeat] intValue];
if ([msg isEqualToString:@""]) { if (![msg isEqualToString:@""])
//No message, we just want to update the badge {
notification.alertBody = nil;
} else {
notification.alertBody = title ? [NSString stringWithFormat:@"%@\n%@", title, msg] : msg; 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; 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