MyView *aa = [[MyView alloc]initWithFrame:CGRectMake(0, 0, screenw  , screenh)];
    
    aa.frame =self.view.bounds;
    aa.backgroundColor = [UIColor redColor];
    [self.view addSubview:aa];
    
    为什么如果我的myview里面如何有个属性@property(nomotic,assign)CGRect frame;
其他什么都没有,这样加载出来的view不是满屏呢?