iOS推送跳转不同的指定页面
2017-09-13 本文已影响0人
May_d8f1
在接受推送信息之中获取要跳转页面的字符串,再将字符串转化为对象,进行该页面的跳转
Class c =NSClassFromString(className);
#if __has_feature(objc_arc)
controller = [[calloc]init];
#else
controller = [[[c alloc] init] autorelease];
#endif
在接受推送信息之中获取要跳转页面的字符串,再将字符串转化为对象,进行该页面的跳转
Class c =NSClassFromString(className);
#if __has_feature(objc_arc)
controller = [[calloc]init];
#else
controller = [[[c alloc] init] autorelease];
#endif