Skip to content

Instantly share code, notes, and snippets.

<!-- a tm / sublime snippet to go with https://github.com/abeisgreat/-_-.js -->
<snippet>
<content><![CDATA[ಠ_ಠ( ${1} )]]></content>
<tabTrigger>oo</tabTrigger>
<scope>source.js</scope>
</snippet>
@mattberg
mattberg / TiUIScrollableView.h
Created June 12, 2012 15:17
Adding scrollsToTop property for ScrollableView, allowing to disable it so a ScrollView can control the status bar event
-(void)manageRotation;
-(UIScrollView*)scrollview;
-(void)setCurrentPage_:(id)page;
-(void)setScrollingEnabled_:(id)enabled;
-(void)refreshScrollView:(CGRect)visibleBounds readd:(BOOL)readd;
-(void)setScrollsToTop_:(id)value; // New property added
@end