自定义等待视图

AlertView.h

#import <UIKit/UIKit.h>

@interface AlertView : UIView

@property (strong, nonatomic) UILabel *messageLabel;
@end

AlertView.m

#import "AlertView.h"

@interface AlertView()
{
    UIActivityIndicatorView *activityIndicatorView;
}
@end

@implementation AlertView
@synthesize messageLabel;

-(id) init
{
    CGRect viewRect = CGRectMake(0, 0, 120, 120);
    self = [super initWithFrame:viewRect];

    if (self) {
        [self initSetup];
        [self initActivityIndicatorView];
        [self initMessage];
    }
    return self;
}

-(void) initSetup
{
    CGRect mainRect = [[UIScreen mainScreen] bounds];
    self.backgroundColor = [UIColor blackColor];
    self.center = CGPointMake(mainRect.size.width / 2, mainRect.size.height / 2);
    self.alpha = 0.6;
    [[self layer] setCornerRadius: 15.0];
}

-(void) initActivityIndicatorView
{
    CGRect frameRect = self.frame;
    activityIndicatorView = [[UIActivityIndicatorView alloc]
                             initWithActivityIndicatorStyle:UIActivityIndicatorViewStyleWhiteLarge];
    activityIndicatorView.center = CGPointMake(frameRect.size.width / 2, frameRect.size.height / 2 - 10);
    [self addSubview:activityIndicatorView];
    [activityIndicatorView startAnimating];
}

-(void) initMessage
{
    messageLabel = [[UILabel alloc]init];
    messageLabel.frame = CGRectMake(0, 0, self.frame.size.width - 15, 20);
    messageLabel.font = [UIFont fontWithName:@"Arial-Bold" size:15];
    messageLabel.textColor = [UIColor whiteColor];
    messageLabel.center =  CGPointMake(self.frame.size.width / 2, self.frame.size.height -20);
    messageLabel.text = @"Please Wait...";
    [self addSubview:messageLabel];
}

@end

使用:

#import "ViewController.h"
#import "AlertView.h"

@interface ViewController ()
{
    AlertView *alertView;
}
@end

@implementation ViewController

- (void)viewDidLoad
{
    [super viewDidLoad];
    alertView = nil;
}

-(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event
{
    if (alertView) {
        [alertView removeFromSuperview];
        alertView = nil;
    }
    else
    {
        alertView = [[AlertView alloc]init];
        [self.view addSubview:alertView];
    }
}
时间: 2024-10-18 20:27:52

自定义等待视图的相关文章

自定义适配器视图getview实现方法比较

Android开发之中,listview是一个非常重要的组件,它以列表的形式显示用户的数据,用户可以自由的定义LsitView每一列的内容,样式,很多时候使用ListView都需要使用自定义Adapter,自定义Adapter之中最重要的莫过于getView方法了. getView方法实现主要的三种方法: 1.第一种就是每次都给adapter new一个View载入布局. 例如: public View getView(int position, View convertView, ViewGr

Android 自定义View视图

创建全新的视图将满足我们独特的UI需求. 本文介绍在指南针开发中会用到的罗盘的界面UI,通过继承View类实现的自定义视图,以此来深刻了解自定义视图. 实现效果图: 源代码: 布局文件activity_main(其中CompassView继承View类): <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.

自定义View视图

自定义View视图文件查找逻辑 之前MVC5和之前的版本中,我们要想对View文件的路径进行控制的话,则必须要对IViewEngine接口的FindPartialView或FindView方法进行重写,所有的视图引擎都继承于该IViewEngine接口,比如默认的RazorViewEngine.但新版本MVC6中,对视图文件的路径方式却不太一样了,目前有两种方式,一种是通过RazorViewEngine,另外一种是通过新特性IViewLocationExpander接口. 通过RazorView

低版本系统兼容的ActionBar(三)自定义Item视图+进度条的实现+下拉导航+透明ActionBar

       一.自定义MenuItem的视图 custom_view.xml (就是一个单选按钮) <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="wrap_content" android

Android开发之自定义HorizontalScrollView视图实现仿ViewPager效果

开发过程中,需要达到 HorizontalScrollView和ViewPager的效果,于是直接重写了HorizontalScrollView来达到实现ViewPager的效果. 实际效果图如下: (1)自定义HorizontalScrollView类:AppHorizontalScrollView实现: package com.czm.ui.view; import java.util.ArrayList; import android.content.Context; import and

MVC自定义编辑视图,DateTime类型属性显示jQuery ui的datapicker

实现的效果为:在编辑视图中,对DateTime类型的属性,显示jQuery UI的datepicker.效果如下: Student.cs public class Student    {        public int Id { get; set; }        public string Name { get; set; }        public DateTime? JoinTime { get; set; }    } HomeController: public class

UICollectionView(集合视图)以及自定义集合视图

一.UICollectionView集合视图 其继承自UIScrollView. UICollectionView类是iOS6新引进的API,用于展示集合视图,布局更加灵活,可实现多列布局,用法类似于UITableView类. 1.需要遵循的协议: 1)UICollectionViewDataSource, 2)UICollectionViewDelegate, 3)UICollectionViewDelegateFlowLayout 2.创建collection: UICollectionVi

自定义多视图

摘要 本章主要使用presentViewController和dismissViewControllerAnimated实现自定义多视图的切换,例子里面模拟导航视图控制器模式,不过跳转的时候有点区别. 运行结果 过程概要 1.新建工程后新增一个基于UIViewController的类,用作多视图的第二视图: 2.在主视图里面创建一个UINavigationBar,一个导航栏,控制页面跳转 3.为了增加可视效果,添加了背景图片以及部分文字 主要代码 h文件 // // ViewController

解读ASP.NET 5 &amp; MVC6系列(16):自定义View视图文件查找逻辑

原文:解读ASP.NET 5 & MVC6系列(16):自定义View视图文件查找逻辑 之前MVC5和之前的版本中,我们要想对View文件的路径进行控制的话,则必须要对IViewEngine接口的FindPartialView或FindView方法进行重写,所有的视图引擎都继承于该IViewEngine接口,比如默认的RazorViewEngine.但新版本MVC6中,对视图文件的路径方式却不太一样了,目前有两种方式,一种是通过RazorViewEngine,另外一种是通过新特性IViewLoc