Skip to content

Latest commit

 

History

History
12 lines (9 loc) · 543 Bytes

README.md

File metadata and controls

12 lines (9 loc) · 543 Bytes

#启动引导图,使用很简单,只要配置图片路径就可以了。代码如下

    NSMutableArray *paths = [NSMutableArray new];
    
    [paths addObject:[[NSBundle mainBundle] pathForResource:@"1" ofType:@"jpg"]];
    [paths addObject:[[NSBundle mainBundle] pathForResource:@"2" ofType:@"jpg"]];
    [paths addObject:[[NSBundle mainBundle] pathForResource:@"3" ofType:@"jpg"]];
    [paths addObject:[[NSBundle mainBundle] pathForResource:@"4" ofType:@"jpg"]];
    
    [[KSGuideManager shared] showGuideViewWithImages:paths];