Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@

*.xcworkspacedata

*.xcuserstate

*.xcscheme

*/xcschememanagement.plist

Scroller.xcodeproj/xcuserdata/andrewromanov.xcuserdatad/xcschemes/xcschememanagement.plist
6 changes: 3 additions & 3 deletions Classes/HorizontalTableView.h
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@
// OR OTHER DEALINGS IN THE SOFTWARE.

#import <UIKit/UIKit.h>
#import "Memory.h"


@class HorizontalTableView;

Expand All @@ -44,12 +46,10 @@
NSInteger _visibleColumnCount;
NSNumber *_columnWidth;

id _delegate;

NSMutableArray *_columnPool;
}

@property (assign) IBOutlet id<HorizontalTableViewDelegate> delegate;
@property (MWeakProperty) IBOutlet id<HorizontalTableViewDelegate> delegate;

- (void)refreshData;
- (UIView *)dequeueColumnView;
Expand Down
Loading