iOS個推遠程推送和本地通知

許多集成的步驟個推官網(wǎng)都有了,這里只寫關(guān)于推送的遠程推送和本地通知的步驟和代碼套硼。APP在后臺時:走蘋果的APNS通知APP在前臺或運行時:做本地通知進行推送AppDelegate.h1.先導入頭文件#import "GeTuiSdk.h"2.宏定義#define kGtAppId? ? ? ? ? @""#define kGtAppKey? ? ? ? ? @""#define kGtAppSecret? ? ? @""3.添加代理@interface AppDelegate : UIResponderAppDelegate.m//個推推送1.宏定義#if __IPHONE_OS_VERSION_MAX_ALLOWED >= __IPHONE_10_0#import#endif2.添加代理@interface AppDelegate ()AppDelegate代理中

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {

// Override point for customization after application launch.

//注冊本地通知

[self registLocationNotification];

//個推-推送功能

// [ GTSdk ]:是否允許APP后臺運行

//? ? [GeTuiSdk runBackgroundEnable:YES];

// [ GTSdk ]:是否運行電子圍欄Lbs功能和是否SDK主動請求用戶定位

[GeTuiSdk lbsLocationEnable:YES andUserVerify:YES];

// [ GTSdk ]:自定義渠道

[GeTuiSdk setChannelId:@"GT-Channel"];

// [ GTSdk ]:使用APPID/APPKEY/APPSECRENT創(chuàng)建個推實例

[GeTuiSdk startSdkWithAppId:kGtAppId appKey:kGtAppKey appSecret:kGtAppSecret delegate:self];

// 注冊APNs - custom method - 開發(fā)者自定義的方法

[self registerRemoteNotification];

return YES;

}

本地通知注冊

#pragma mark注冊本地通知

-(void)registLocationNotification

{

if ([[UIDevice currentDevice].systemVersion floatValue] >= 10.0){

// 使用 UNUserNotificationCenter 來管理通知

UNUserNotificationCenter *center = [UNUserNotificationCenter currentNotificationCenter];

//監(jiān)聽回調(diào)事件

center.delegate = self;

//iOS 10 使用以下方法注冊,才能得到授權(quán)

[center requestAuthorizationWithOptions:(UNAuthorizationOptionAlert + UNAuthorizationOptionSound)

completionHandler:^(BOOL granted, NSError * _Nullable error) {

// Enable or disable features based on authorization.

}];

//獲取當前的通知設置牵啦,UNNotificationSettings 是只讀對象渐裸,不能直接修改,只能通過以下方法獲取

[center getNotificationSettingsWithCompletionHandler:^(UNNotificationSettings * _Nonnull settings) {

}];

}else if ([[UIDevice currentDevice].systemVersion floatValue] >= 8.0&&[[UIDevice currentDevice].systemVersion floatValue] < 10.0){

if ([[UIApplication sharedApplication] respondsToSelector:@selector(registerUserNotificationSettings:)]) {

UIUserNotificationSettings *settings = [UIUserNotificationSettings settingsForTypes:UIUserNotificationTypeBadge|UIUserNotificationTypeSound|UIUserNotificationTypeAlert categories:nil];

[[UIApplication sharedApplication] registerUserNotificationSettings:settings];

}

}

}

注冊個推的遠程推送

#pragma mark - 用戶通知(推送) _自定義方法

/** 注冊遠程通知 */

- (void)registerRemoteNotification {

/*

警告:Xcode8的需要手動開啟“TARGETS -> Capabilities -> Push Notifications”

*/

/*

警告:該方法需要開發(fā)者自定義犀被,以下代碼根據(jù)APP支持的iOS系統(tǒng)不同,代碼可以對應修改外冀。

以下為演示代碼寡键,注意根據(jù)實際需要修改,注意測試支持的iOS系統(tǒng)都能獲取到DeviceToken

*/

if ([[UIDevice currentDevice].systemVersion floatValue] >= 10.0) {

#if __IPHONE_OS_VERSION_MAX_ALLOWED >= __IPHONE_10_0 // Xcode 8編譯會調(diào)用

UNUserNotificationCenter *center = [UNUserNotificationCenter currentNotificationCenter];

center.delegate = self;

[center requestAuthorizationWithOptions:(UNAuthorizationOptionBadge | UNAuthorizationOptionSound | UNAuthorizationOptionAlert | UNAuthorizationOptionCarPlay) completionHandler:^(BOOL granted, NSError *_Nullable error) {

if (!error) {

NSLog(@"request authorization succeeded!");

}

}];

[[UIApplication sharedApplication] registerForRemoteNotifications];

#else // Xcode 7編譯會調(diào)用

UIUserNotificationType types = (UIUserNotificationTypeAlert | UIUserNotificationTypeSound | UIUserNotificationTypeBadge);

UIUserNotificationSettings *settings = [UIUserNotificationSettings settingsForTypes:types categories:nil];

[[UIApplication sharedApplication] registerUserNotificationSettings:settings];

[[UIApplication sharedApplication] registerForRemoteNotifications];

#endif

} else if ([[[UIDevice currentDevice] systemVersion] floatValue] >= 8.0) {

UIUserNotificationType types = (UIUserNotificationTypeAlert | UIUserNotificationTypeSound | UIUserNotificationTypeBadge);

UIUserNotificationSettings *settings = [UIUserNotificationSettings settingsForTypes:types categories:nil];

[[UIApplication sharedApplication] registerUserNotificationSettings:settings];

[[UIApplication sharedApplication] registerForRemoteNotifications];

} else {

UIRemoteNotificationType apn_type = (UIRemoteNotificationType)(UIRemoteNotificationTypeAlert |

UIRemoteNotificationTypeSound |

UIRemoteNotificationTypeBadge);

[[UIApplication sharedApplication] registerForRemoteNotificationTypes:apn_type];

}

}

注冊APNS成功返回具體的信息

#pragma mark - 遠程通知(推送)回調(diào)

/** 遠程通知注冊成功委托 */

- (void)application:(UIApplication *)application didRegisterForRemoteNotificationsWithDeviceToken:(NSData *)deviceToken {

NSString *token = [[deviceToken description] stringByTrimmingCharactersInSet:[NSCharacterSet characterSetWithCharactersInString:@"<>"]];

token = [token stringByReplacingOccurrencesOfString:@" " withString:@""];

NSLog(@"\n>>>[DeviceToken Success]:%@\n\n", token);

// [ GTSdk ]:向個推服務器注冊deviceToken

[GeTuiSdk registerDeviceToken:token];

}

/** 遠程通知注冊失敗委托 */

- (void)application:(UIApplication *)application didFailToRegisterForRemoteNotificationsWithError:(NSError *)error {

NSLog(@"\n>>>[DeviceToken Error]:%@\n\n", error.description);

}

收到遠程推送锥惋,角標加1

#pragma mark - APP運行中接收到通知(推送)處理 - iOS 10以下版本收到推送

/** APP已經(jīng)接收到“遠程”通知(推送) - 透傳推送消息? */

- (void)application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)userInfo fetchCompletionHandler:(void (^)(UIBackgroundFetchResult result))completionHandler {

[GeTuiSdk setBadge:[UIApplication sharedApplication].applicationIconBadgeNumber+1];

// [ GTSdk ]:將收到的APNs信息傳給個推統(tǒng)計

[GeTuiSdk handleRemoteNotification:userInfo];

// 控制臺打印接收APNs信息

NSLog(@"\n>>>[Receive RemoteNotification]:%@\n\n", userInfo);

completionHandler(UIBackgroundFetchResultNewData);

}

#pragma mark - iOS 10中收到推送消息

#if __IPHONE_OS_VERSION_MAX_ALLOWED >= __IPHONE_10_0

//? iOS 10: App在前臺獲取到通知

- (void)userNotificationCenter:(UNUserNotificationCenter *)center willPresentNotification:(UNNotification *)notification withCompletionHandler:(void (^)(UNNotificationPresentationOptions))completionHandler {

NSLog(@"willPresentNotification:%@", notification.request.content.userInfo);

// 根據(jù)APP需要昌腰,判斷是否要提示用戶Badge、Sound膀跌、Alert

completionHandler(UNNotificationPresentationOptionBadge | UNNotificationPresentationOptionSound | UNNotificationPresentationOptionAlert);

completionHandler(UNNotificationPresentationOptionAlert);

}

###收到遠程推送打開app時做的跳轉(zhuǎn)頁面###

//? iOS 10: 點擊通知進入App時觸發(fā)

- (void)userNotificationCenter:(UNUserNotificationCenter *)center didReceiveNotificationResponse:(UNNotificationResponse *)response withCompletionHandler:(void (^)())completionHandler {

NSLog(@"didReceiveNotification:%@", response.notification.request.content.userInfo);

// [ GTSdk ]:將收到的APNs信息傳給個推統(tǒng)計

[GeTuiSdk handleRemoteNotification:response.notification.request.content.userInfo];

//跳轉(zhuǎn)頁面

DetailContentVC *detailVC=[DetailContentVC new];

detailVC.titleValue=_webTitle;

detailVC.requestUrl=_webUrl;

detailVC.hidesBottomBarWhenPushed=YES;

self.window.rootViewController.hidesBottomBarWhenPushed=NO;

[((UITabBarController *)self.window.rootViewController).selectedViewController pushViewController:detailVC animated:YES];

completionHandler();

}

#endif

注冊遠程推送返回來的cid

#pragma mark - GeTuiSdkDelegate

/** SDK啟動成功返回cid */

- (void)GeTuiSdkDidRegisterClient:(NSString *)clientId {

// [4-EXT-1]: 個推SDK已注冊遭商,返回clientId

NSLog(@"\n>>[GTSdk RegisterClient]:%@\n\n", clientId);

}

/** SDK遇到錯誤回調(diào) */

- (void)GeTuiSdkDidOccurError:(NSError *)error {

// [EXT]:個推錯誤報告,集成步驟發(fā)生的任何錯誤都在這里通知捅伤,如果集成后劫流,無法正常收到消息,查看這里的通知丛忆。

NSLog(@"\n>>[GTSdk error]:%@\n\n", [error localizedDescription]);

}

透傳消息都會走這個祠汇,這邊是接收離線消息的方法,在這里面去做判斷去做本地通知還是遠程推送熄诡,如果是本地通知可很,則去注冊消息,否則不做任何動作

/** SDK收到透傳消息回調(diào) */

- (void)GeTuiSdkDidReceivePayloadData:(NSData *)payloadData andTaskId:(NSString *)taskId andMsgId:(NSString *)msgId andOffLine:(BOOL)offLine fromGtAppId:(NSString *)appId {

// [ GTSdk ]:匯報個推自定義事件(反饋透傳消息)

[GeTuiSdk sendFeedbackMessage:90001 andTaskId:taskId andMsgId:msgId];

// 數(shù)據(jù)轉(zhuǎn)換

NSString *payloadMsg = nil;

if (payloadData) {

payloadMsg = [[NSString alloc] initWithBytes:payloadData.bytes length:payloadData.length encoding:NSUTF8StringEncoding];

}

// 控制臺打印日志

NSString *msg = [NSString stringWithFormat:@"taskId=%@,messageId:%@,payloadMsg:%@%@", taskId, msgId, payloadMsg, offLine ? @"<離線消息>" : @""];

NSLog(@"\n>>[GTSdk ReceivePayload]:%@\n\n", msg);

NSError *error=nil;

NSDictionary *dic=[NSJSONSerialization JSONObjectWithData:payloadData options:NSJSONReadingMutableContainers error:&error];

NSString *title=[NSString stringWithFormat:@"%@",dic[@"title"]];

NSString *detail=[NSString stringWithFormat:@"%@",dic[@"text"]];

_webTitle=[NSString stringWithFormat:@"%@",dic[@"messageTitle"]];

_webUrl=[NSString stringWithFormat:@"%@",dic[@"messageUrl"]];

// 當app不在前臺時凰浮,接收到的推送消息offLine值均為YES

// 判斷app是否是點擊通知欄消息進行喚醒或開啟

// 如果是點擊icon圖標使得app進入前臺我抠,則不做操作,并且同一條推送通知袜茧,此方法只執(zhí)行一次

if (!offLine) {//? 離線消息已經(jīng)有蘋果的apns推過消息了菜拓,避免上線后再次受到消息

if ([[UIDevice currentDevice].systemVersion floatValue] >= 10.0){

[self registerNotification:1 andTitle:title andMess:detail];

}else{

[self registerLocalNotificationInOldWay:1 andTitle:title andMess:detail];

}

}

}

在app運行時恢復個推sdk運行

- (void)application:(UIApplication *)application performFetchWithCompletionHandler:(void (^)(UIBackgroundFetchResult))completionHandler {

/// Background Fetch 恢復SDK 運行

[GeTuiSdk resume];

completionHandler(UIBackgroundFetchResultNewData);

}

/** SDK收到sendMessage消息回調(diào) */

- (void)GeTuiSdkDidSendMessage:(NSString *)messageId result:(int)result {

// 發(fā)送上行消息結(jié)果反饋

NSString *msg = [NSString stringWithFormat:@"sendmessage=%@,result=%d", messageId, result];

NSLog(@"\n>>[GTSdk DidSendMessage]:%@\n\n", msg);

}

/** SDK運行狀態(tài)通知 */

- (void)GeTuiSDkDidNotifySdkState:(SdkStatus)aStatus {

// 通知SDK運行狀態(tài)

NSLog(@"\n>>[GTSdk SdkState]:%u\n\n", aStatus);

}

/** SDK設置推送模式回調(diào) */

- (void)GeTuiSdkDidSetPushMode:(BOOL)isModeOff error:(NSError *)error {

if (error) {

NSLog(@"\n>>[GTSdk SetModeOff Error]:%@\n\n", [error localizedDescription]);

return;

}

NSLog(@"\n>>[GTSdk SetModeOff]:%@\n\n", isModeOff ? @"開啟" : @"關(guān)閉");

}

在通知欄點擊進來的時候做角標的變化

- (void)handlePushMessage:(NSDictionary *)dict notification:(UILocalNotification *)localNotification {

//開始處理從通知欄點擊進來的推送消息

if ([UIApplication sharedApplication].applicationIconBadgeNumber != 0) {

if (localNotification) {

//刪除相應信息欄

[[UIApplication sharedApplication] cancelLocalNotification:localNotification];

}

//應用的數(shù)字角標減1

[UIApplication sharedApplication].applicationIconBadgeNumber -= 1;

}

else {

[[UIApplication sharedApplication] cancelAllLocalNotifications];

[UIApplication sharedApplication].applicationIconBadgeNumber = 0;

}

}

注冊本地通知消息

#pragma mark本地推送

#if __IPHONE_OS_VERSION_MAX_ALLOWED >= __IPHONE_10_0

//使用 UNNotification 本地通知

-(void)registerNotification:(NSInteger )alerTime andTitle:(NSString*)title andMess:(NSString*)mes{

// 使用 UNUserNotificationCenter 來管理通知

UNUserNotificationCenter* center = [UNUserNotificationCenter currentNotificationCenter];

//需創(chuàng)建一個包含待通知內(nèi)容的 UNMutableNotificationContent 對象,注意不是 UNNotificationContent ,此對象為不可變對象笛厦。

UNMutableNotificationContent* content = [[UNMutableNotificationContent alloc] init];

content.title = [NSString localizedUserNotificationStringForKey:title arguments:nil];

content.body = [NSString localizedUserNotificationStringForKey:mes

arguments:nil];

content.sound = [UNNotificationSound defaultSound];

content.userInfo=@{@"webTitle":_webTitle,@"webUrl":_webUrl};

// 在 alertTime 后推送本地推送

UNTimeIntervalNotificationTrigger* trigger = [UNTimeIntervalNotificationTrigger

triggerWithTimeInterval:alerTime repeats:NO];

UNNotificationRequest* request = [UNNotificationRequest requestWithIdentifier:@"FiveSecond"

content:content trigger:trigger];

//添加推送成功后的處理纳鼎!

[center addNotificationRequest:request withCompletionHandler:^(NSError * _Nullable error) {

}];

[[UIApplication sharedApplication] setApplicationIconBadgeNumber:[UIApplication sharedApplication].applicationIconBadgeNumber+1];

[GeTuiSdk setBadge:[UIApplication sharedApplication].applicationIconBadgeNumber];

}

#endif

- (void)registerLocalNotificationInOldWay:(NSInteger)alertTime andTitle:(NSString*)title andMess:(NSString*)mes{

UILocalNotification *notification = [[UILocalNotification alloc] init];

// 設置觸發(fā)通知的時間

NSDate *fireDate = [NSDate dateWithTimeIntervalSinceNow:alertTime];

NSLog(@"fireDate=%@",fireDate);

notification.fireDate = fireDate;

// 時區(qū)

notification.timeZone = [NSTimeZone defaultTimeZone];

// 設置重復的間隔-不重復

notification.repeatInterval = kCFCalendarUnitEra;

// 通知內(nèi)容

notification.alertBody = title;

notification.applicationIconBadgeNumber = 1;

// 通知被觸發(fā)時播放的聲音

notification.soundName = UILocalNotificationDefaultSoundName;

// 通知參數(shù)

NSDictionary *userDict = [NSDictionary dictionaryWithObject:mes forKey:@"key"];

notification.userInfo = userDict;

// ios8后,需要添加這個注冊裳凸,才能得到授權(quán)

if ([[UIApplication sharedApplication] respondsToSelector:@selector(registerUserNotificationSettings:)]) {

UIUserNotificationType type = UIUserNotificationTypeAlert | UIUserNotificationTypeBadge | UIUserNotificationTypeSound;

UIUserNotificationSettings *settings = [UIUserNotificationSettings settingsForTypes:type

categories:nil];

[[UIApplication sharedApplication] registerUserNotificationSettings:settings];

// 通知重復提示的單位贱鄙,可以是天、周姨谷、月

notification.repeatInterval = NSCalendarUnitDay;

} else {

// 通知重復提示的單位贰逾,可以是天、周菠秒、月

notification.repeatInterval = NSDayCalendarUnit;

}

// 執(zhí)行通知注冊

[[UIApplication sharedApplication] scheduleLocalNotification:notification];

[[UIApplication sharedApplication] setApplicationIconBadgeNumber:[UIApplication sharedApplication].applicationIconBadgeNumber+1];

[GeTuiSdk setBadge:[UIApplication sharedApplication].applicationIconBadgeNumber];

}

在進入前臺的時候要將所有app角標清空疙剑,同時告訴個推此時角標為0

- (void)applicationDidBecomeActive:(UIApplication *)application {

// Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface.

[self updateExpriedStatue];

//推送個數(shù)大于0

if (application.applicationIconBadgeNumber>0) {? //badge number 不為0,說明程序有那個圈圈圖標

//這里進行有關(guān)處理

[application setApplicationIconBadgeNumber:0];? //將圖標清零践叠。

[GeTuiSdk setBadge:0];

}

}

至此言缤,個推的遠程推送和本地通知完成。

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末禁灼,一起剝皮案震驚了整個濱河市管挟,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌弄捕,老刑警劉巖僻孝,帶你破解...
    沈念sama閱讀 221,198評論 6 514
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件导帝,死亡現(xiàn)場離奇詭異,居然都是意外死亡穿铆,警方通過查閱死者的電腦和手機您单,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 94,334評論 3 398
  • 文/潘曉璐 我一進店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來荞雏,“玉大人虐秦,你說我怎么就攤上這事》镉牛” “怎么了悦陋?”我有些...
    開封第一講書人閱讀 167,643評論 0 360
  • 文/不壞的土叔 我叫張陵,是天一觀的道長筑辨。 經(jīng)常有香客問我俺驶,道長,這世上最難降的妖魔是什么棍辕? 我笑而不...
    開封第一講書人閱讀 59,495評論 1 296
  • 正文 為了忘掉前任痒钝,我火速辦了婚禮,結(jié)果婚禮上痢毒,老公的妹妹穿的比我還像新娘送矩。我一直安慰自己,他們只是感情好哪替,可當我...
    茶點故事閱讀 68,502評論 6 397
  • 文/花漫 我一把揭開白布栋荸。 她就那樣靜靜地躺著,像睡著了一般凭舶。 火紅的嫁衣襯著肌膚如雪晌块。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 52,156評論 1 308
  • 那天帅霜,我揣著相機與錄音匆背,去河邊找鬼。 笑死身冀,一個胖子當著我的面吹牛钝尸,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播搂根,決...
    沈念sama閱讀 40,743評論 3 421
  • 文/蒼蘭香墨 我猛地睜開眼珍促,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了剩愧?” 一聲冷哼從身側(cè)響起猪叙,我...
    開封第一講書人閱讀 39,659評論 0 276
  • 序言:老撾萬榮一對情侶失蹤,失蹤者是張志新(化名)和其女友劉穎,沒想到半個月后穴翩,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體犬第,經(jīng)...
    沈念sama閱讀 46,200評論 1 319
  • 正文 獨居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 38,282評論 3 340
  • 正文 我和宋清朗相戀三年芒帕,在試婚紗的時候發(fā)現(xiàn)自己被綠了歉嗓。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點故事閱讀 40,424評論 1 352
  • 序言:一個原本活蹦亂跳的男人離奇死亡副签,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出基矮,到底是詐尸還是另有隱情淆储,我是刑警寧澤,帶...
    沈念sama閱讀 36,107評論 5 349
  • 正文 年R本政府宣布家浇,位于F島的核電站本砰,受9級特大地震影響,放射性物質(zhì)發(fā)生泄漏钢悲。R本人自食惡果不足惜点额,卻給世界環(huán)境...
    茶點故事閱讀 41,789評論 3 333
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望莺琳。 院中可真熱鬧还棱,春花似錦、人聲如沸惭等。這莊子的主人今日做“春日...
    開封第一講書人閱讀 32,264評論 0 23
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽辞做。三九已至琳要,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間秤茅,已是汗流浹背稚补。 一陣腳步聲響...
    開封第一講書人閱讀 33,390評論 1 271
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留框喳,地道東北人课幕。 一個月前我還...
    沈念sama閱讀 48,798評論 3 376
  • 正文 我出身青樓,卻偏偏與公主長得像五垮,于是被迫代替她去往敵國和親撰豺。 傳聞我的和親對象是個殘疾皇子,可洞房花燭夜當晚...
    茶點故事閱讀 45,435評論 2 359

推薦閱讀更多精彩內(nèi)容

  • 許多集成的步驟個推官網(wǎng)都有了拼余,這里只寫關(guān)于推送的遠程推送和本地通知的步驟和代碼污桦。 APP在后臺時:走蘋果的APNS...
    離離離離閱讀 3,701評論 4 8
  • 概述 在多數(shù)移動應用中任何時候都只能有一個應用程序處于活躍狀態(tài),如果其他應用此刻發(fā)生了一些用戶感興趣的那么通過通知...
    莫離_焱閱讀 6,517評論 1 8
  • 極光推送: 1.JPush當前版本是1.8.2匙监,其SDK的開發(fā)除了正常的功能完善和擴展外也緊隨蘋果官方的步伐凡橱,SD...
    Isspace閱讀 6,724評論 10 16
  • 在簡單項目中小作,有使用到apns推送服務,許多文章有涉及到卻沒有講清楚稼钩。最近做福路通項目顾稀,有使用到,做一個總結(jié)坝撑。 推...
    天空的守望者閱讀 905評論 0 3
  • 千秋歲.武漢謝師 湯遜湖畔静秆。江夏桂花燦。教師節(jié)巡李,思緒亂抚笔。風華正茂時,良師多行善侨拦。青春苦殊橙,桃李春風...
    金儒圣追求成功的浪子閱讀 219評論 0 0