ios自定义hub指示器

来源:互联网 发布:fast迅捷网络登录密码 编辑:程序博客网 时间:2024/06/04 18:52
UIView *loadingView = [[UIViewalloc]initWithFrame:CGRectMake((self.view.frame.size.width - 80) /2.0f, ([UIScreenmainScreen].bounds.size.height - 80.f)/2.0f,80.0f,80.0f)];

    [loadingViewsetBackgroundColor:[UIColorgrayColor]];

    [loadingView.layersetCornerRadius:10.0f];

    [loadingView.layersetMasksToBounds:YES];

    

    UIActivityIndicatorView *loading = [[UIActivityIndicatorViewalloc]initWithActivityIndicatorStyle:UIActivityIndicatorViewStyleWhiteLarge];

    [loading startAnimating];

    [loading setFrame:CGRectMake(30.f,30.0f,20.0f,20.0f)];

    [loadingViewaddSubview:loading];

    [self.viewaddSubview:loadingView];

    [loadingViewsetHidden:NO];

0 0