loadview

- (void)loadView

{

    UIView *contentView = [[UIViewalloc] initWithFrame:[[UIScreenmainScreen] applicationFrame]];

    contentView.backgroundColor = [UIColorlightGrayColor];

    

    UILabel *label = [[UILabelalloc] initWithFrame:CGRectMake(0.0f, 0.0f, 320.0f, 30.0f)];

    label.text = @"Hello,World";

    label.center = contentView.center;

    label.textAlignment = UITextAlignmentCenter;

    label.backgroundColor = [UIColorclearColor];

    

    [contentView addSubview:label];

    

    self.view = contentView;

}

posted @ 2012-11-22 10:05  Revey.Jay  阅读(168)  评论(0编辑  收藏  举报