小编lar*_*435的帖子

如何在ios sdk中识别特定通知

实际上我正在开发一个警报项目,现在我对本地通知有疑问.我如何识别特定通知.我们甚至无法将标签设置为本地通知,那么我如何区分它们.

例:

通知:1

UILocalNotification *localNotification = [[UILocalNotification alloc] init];
    localNotification.fireDate = selectedDate; 
    localNotification.alertBody = @"you got work";
    localNotification.alertAction = @"Snooze";
    localNotification.repeatInterval = NSDayCalendarUnit;
    localNotification.soundName = UILocalNotificationDefaultSoundName;

    NSDictionary *infoDict = [NSDictionary dictionaryWithObjectsAndKeys:@"setNotificationForEveryDay", @"key", nil];
    localNotification.userInfo = infoDict;

    [[UIApplication sharedApplication] scheduleLocalNotification:localNotification];
    [localNotification release];
Run Code Online (Sandbox Code Playgroud)

通知:2,

UILocalNotification *localNotification = [[UILocalNotification alloc] init];
    localNotification.fireDate = another selectedDate; 
    localNotification.alertBody = @"i got work";
    localNotification.alertAction = @"Snooze";
    localNotification.repeatInterval = NSDayCalendarUnit;
    localNotification.soundName = UILocalNotificationDefaultSoundName;
    NSDictionary *infoDict = [NSDictionary dictionaryWithObjectsAndKeys:@"setNotificationForEveryDay", @"key", nil];
    localNotification.userInfo = infoDict;

    [[UIApplication sharedApplication] scheduleLocalNotification:localNotification];
    [localNotification …
Run Code Online (Sandbox Code Playgroud)

ios uilocalnotification

12
推荐指数
1
解决办法
7264
查看次数

在facebook ios上传图片

请帮我在facebook上使用iphone app上传图片.我没有url.i只有图像.但我不能上传到脸书.如果我可以使用网址然后我可以上传它.请帮助我.

请把上传图片的代码发给我.我已经创建了相对于fbconnect ios的facebook实例和其他代码.

iphone

5
推荐指数
1
解决办法
9100
查看次数

标签 统计

ios ×1

iphone ×1

uilocalnotification ×1