标题 一个# 表示一级标题
二个#表示二级标题
最多6个# 标题
(使用4个包裹要加粗的文本,使用2个包裹变斜体,使用6个*包裹粗体+斜体)
五月份,她在变节军事官员和利比亚反叛武装的帮助下逃到了突尼斯,在六月早些时候回到利比亚班加西之前,在卡塔尔找到了临时的避难所。
表示引用一段文字
这里写的就是引用的名言
段落与段落之间加一个空行,梳理格式空格不起作用.
项目名称 | 负责人 | 备注 |
---|---|---|
博客 | '123qaz | 4456 |
博客 | 博客'123xsw | 4561 |
博客 | 博客'123bvgfdsb | 4516 |
代码框
NSString
代码部分 中文
UIMutableUserNotificationAction *action1 = [[UIMutableUserNotificationAction alloc] init];
action1.identifier = @"action1_identifier";
action1.title=@"Accept";
action1.activationMode = UIUserNotificationActivationModeForeground;//当点击的时候启动程序
UIMutableUserNotificationAction *action2 = [[UIMutableUserNotificationAction alloc] init]; //第二按钮
action2.identifier = @"action2_identifier";
action2.title=@"Reject";
action2.activationMode = UIUserNotificationActivationModeBackground;//当点击的时候不启动程序,在后台处理
action2.authenticationRequired = YES;//需要解锁才能处理,如果action.activationMode = UIUserNotificationActivationModeForeground;则这个属性被忽略;
action2.destructive = YES;
UIMutableUserNotificationCategory *categorys = [[UIMutableUserNotificationCategory alloc] init];
categorys.identifier = @"category1";//这组动作的唯一标示
[categorys setActions:@[action1,action2] forContext:(UIUserNotificationActionContextDefault)];
UIUserNotificationSettings *userSettings = [UIUserNotificationSettings settingsForTypes:UIUserNotificationTypeBadge|UIUserNotificationTypeSound|UIUserNotificationTypeAlert
categories:[NSSet setWithObject:categorys]];
[UMessage registerRemoteNotificationAndUserNotificationSettings:userSettings];
分割线
图片注释
网友评论