我目前正在开发一个应用程序,这个:http://90kids.com/level-dash/我无法弄清楚如何让我的屏幕自动滚动。任何帮助表示赞赏
答案 0 :(得分:2)
创建计时器任务在每个特定时间后滚动视图。 参见下面的例子
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *basePath = ([paths count] > 0) ? [paths objectAtIndex:0] : nil;
NSString *pdfFilePath =[basePath stringByAppendingPathComponent:@"myPDF.pdf"];
NSLog(@"pdf file %@",pdfFilePath);