/Slider

Image Slider with xib

Primary LanguageObjective-C

Slider

Image Slider with xib

About screen List screen

How to use

In .h file
#import "Slider.h"
@interface ViewController : UIViewController

@property (weak, nonatomic) IBOutlet Slider *slider;

@end

In .m File

    NSMutableArray *data = [[NSMutableArray alloc] init];
    [data addObject:@"http://www.planwallpaper.com/static/images/Nature-Background-Wallpapers-8_gxwmqmj.jpg"];
    [data addObject:@"http://wallpapercave.com/wp/eas6Et3.jpg"];
    [data addObject:@"https://images.freecreatives.com/wp-content/uploads/2015/06/beautiful-nature-background.jpg"];
    [data addObject:@"http://hdwallpaperbackgrounds.net/wp-content/uploads/2016/07/Nature-background-12.jpg"];
    slider.slides = data;
    [slider setupSliderView];