mirror of
https://github.com/SDWebImage/SDWebImage.git
synced 2026-06-06 19:37:51 +00:00
Inspired by http://www.blog.montgomerie.net/easy-xcode-static-library-subprojects-and-submodules
18 lines
350 B
Objective-C
18 lines
350 B
Objective-C
//
|
|
// MasterViewController.h
|
|
// SDWebImage Demo
|
|
//
|
|
// Created by Olivier Poitrey on 09/05/12.
|
|
// Copyright (c) 2012 Dailymotion. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@class DetailViewController;
|
|
|
|
@interface MasterViewController : UITableViewController
|
|
|
|
@property (strong, nonatomic) DetailViewController *detailViewController;
|
|
|
|
@end
|