ScrollViewController.h 303 B

12345678910111213141516171819
  1. //
  2. // ScrollViewController.h
  3. // CommonLibrary
  4. //
  5. // Created by Alexi on 4/2/14.
  6. // Copyright (c) 2014 Alexi. All rights reserved.
  7. //
  8. #import "BaseViewController.h"
  9. @interface ScrollViewController : BaseViewController
  10. {
  11. @protected
  12. UIScrollView *_scrollView;
  13. }
  14. - (void)configContentSize;
  15. @end