SettingView.m
上传用户:qhdwjd2004
上传日期:2020-12-29
资源大小:362k
文件大小:0k
源码类别:

iPhone

开发平台:

Objective-C

  1. #import "SettingView.h"
  2. @implementation SettingView
  3. - (id)initWithFrame:(CGRect)rect
  4. {
  5.     if((self == [super initWithFrame:rect])!=nil)
  6.     {
  7.     }
  8.     return self;
  9. }
  10. - (void)drawRect:(CGRect)rect
  11. {
  12. }
  13. - (void)dealloc
  14. {
  15.     [self dealloc];
  16.     [super dealloc];
  17. }
  18. - (void)setParentView:(UIView*)view
  19. {
  20.     parentView = view;
  21. }
  22. @end