mirror of
https://github.com/zhigang1992/IOS7ScrollViews.git
synced 2026-01-12 22:48:09 +08:00
19 lines
545 B
Objective-C
19 lines
545 B
Objective-C
//
|
|
// SVViewController.h
|
|
// iOS7ScrollViews
|
|
//
|
|
// Created by Pierre Felgines on 20/06/13.
|
|
// Copyright (c) 2013 Pierre Felgines. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@interface SVViewController : UIViewController <UICollectionViewDataSource>
|
|
|
|
@property (retain, nonatomic) IBOutlet UIScrollView * scrollView;
|
|
@property (retain, nonatomic) IBOutlet UIView * otherView;
|
|
@property (retain, nonatomic) IBOutlet UICollectionView * collectionView;
|
|
@property (retain, nonatomic) IBOutlet UICollectionViewFlowLayout * flowLayout;
|
|
|
|
@end
|