1:扇形进度视图及运用

首先先创建扇形的视图,传入进度值

#import <UIKit/UIKit.h>

@interface LHProgressView : UIView

@property (nonatomic) float progress;

@end
#import "LHProgressView.h"
#define MinProgress (1.0 / 16.0) @implementation LHProgressView - (id)initWithFrame:(CGRect)frame
{
if (self = [super initWithFrame:frame]) {
self.backgroundColor = [UIColor clearColor];
_progress = MinProgress;
}
return self;
} - (void)drawRect:(CGRect)rect
{ CGContextRef context = UIGraphicsGetCurrentContext(); CGContextFillPath(context);
CGRect aRect= CGRectMake(, , self.bounds.size.width - , self.bounds.size.height - );
CGContextSetRGBStrokeColor(context, 1.0, 1.0, 1.0, 0.9);
CGContextSetLineWidth(context, 2.0);
CGContextAddEllipseInRect(context, aRect);
CGContextDrawPath(context, kCGPathStroke); CGFloat centerX = self.bounds.size.width / ;
CGFloat centerY = self.bounds.size.height / ; UIColor *aColor = [UIColor colorWithRed:1.0 green:1.0 blue:1.0 alpha:0.9];
CGContextSetFillColorWithColor(context, aColor.CGColor);
CGContextSetLineWidth(context, 0.0);
CGContextMoveToPoint(context, centerX, centerY);
CGContextAddArc(context, centerX, centerY, (self.bounds.size.width - ) / , - M_PI_2, - M_PI_2 + self.progress * *M_PI, );
CGContextClosePath(context);
CGContextDrawPath(context, kCGPathFillStroke); } - (void)setProgress:(float)progress
{
_progress = progress; if (_progress < MinProgress) {
_progress = MinProgress;
} if (_progress >= 1.0) { [self setNeedsDisplay];
[self removeFromSuperview]; } else { [self setNeedsDisplay]; } } @end

运用:

@property(nonatomic, strong)LHProgressView *progressView;
-(instancetype)initWithFrame:(CGRect)frame
{
if (self = [super initWithFrame:frame]) { self.backgroundColor = [UIColor clearColor]; _progressView = [[LHProgressView alloc] init]; } return self;
}
- (void)setItemImageUrl:(NSString *)itemImageUrl
{
_itemImageUrl = itemImageUrl; BOOL imageExist = [[SDWebImageManager sharedManager] cachedImageExistsForURL:[NSURL URLWithString:itemImageUrl]]; if (_itemImageProgress == 1.0 || imageExist) { [_progressView removeFromSuperview]; } else { _progressView.bounds = CGRectMake(, , , );
_progressView.center = CGPointMake((self.bounds.size.width) / , (self.bounds.size.height) / );
[self addSubview:_progressView]; _progressView.progress = _itemImageProgress; } _itemImageView.image = _itemImage; [self resetSize]; __weak LHProgressView *progressView = _progressView;
__weak LHPhotoView *photoView = self;
NSInteger index = self.tag - ; [[SDWebImageManager sharedManager] downloadImageWithURL:[NSURL URLWithString:itemImageUrl] options:SDWebImageRetryFailed | SDWebImageLowPriority progress:^(NSInteger receivedSize, NSInteger expectedSize) { if ([photoView.photoViewDelegate respondsToSelector:@selector(photoIsShowingPhotoViewAtIndex:)]) {
BOOL isShow = [photoView.photoViewDelegate photoIsShowingPhotoViewAtIndex:index]; if (isShow) {
if (receivedSize > kMinProgress) {
progressView.progress = (float)receivedSize/expectedSize;
}
} } if ([photoView.photoViewDelegate respondsToSelector:@selector(updatePhotoProgress:andIndex:)]) {
[photoView.photoViewDelegate updatePhotoProgress:(float)receivedSize/expectedSize andIndex:index];
} } completed:^(UIImage *image, NSError *error, SDImageCacheType cacheType, BOOL finished, NSURL *imageURL) { if (image) {
if ([photoView.photoViewDelegate respondsToSelector:@selector(photoIsShowingPhotoViewAtIndex:)]) {
BOOL isShow = [photoView.photoViewDelegate photoIsShowingPhotoViewAtIndex:index]; if (isShow) {
photoView.itemImageView.image = image; [self resetSize];
} } if ([photoView.photoViewDelegate respondsToSelector:@selector(updatePhotoProgress:andIndex:)]) {
[photoView.photoViewDelegate updatePhotoProgress:1.0 andIndex:index];
}
} }]; }

注意:在break里面要先处理一下对象__weak LHProgressView *progressView = _progressView;上面也用到SDWebImage进行图片加载,并把进度赋值

2:Delegate运用在开放事件中

#import <UIKit/UIKit.h>
@class DMDropDownMenu; @protocol DMDropDownMenuDelegate <NSObject> - (void)selectIndex:(NSInteger)index AtDMDropDownMenu:(DMDropDownMenu *)dmDropDownMenu; @end
@interface DMDropDownMenu : UIView

@property(nonatomic,assign)id<DMDropDownMenuDelegate>delegate;

@end
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
[self tapAction];
_curText.text = self.listArr[indexPath.row];
if ([_delegate respondsToSelector:@selector(selectIndex:AtDMDropDownMenu:)]) {
[_delegate selectIndex:indexPath.row AtDMDropDownMenu:self];
}
}

运用时三步代码:

@interface ViewController ()<DMDropDownMenuDelegate>
@end DMDropDownMenu * dm1 = [[DMDropDownMenu alloc] initWithFrame:CGRectMake(, , , )];
dm1.delegate = self;
[self.view addSubview:dm1]; - (void)selectIndex:(NSInteger)index AtDMDropDownMenu:(DMDropDownMenu *)dmDropDownMenu
{
NSLog(@"dropDownMenu:%@ index:%d",dmDropDownMenu,index);
}

 3:UINavigationController的封装

#import <UIKit/UIKit.h>
#import "UIColor+KSString.h"
@interface KSNavigationController : UINavigationController @end
#import "KSNavigationController.h"

@interface KSNavigationController ()<UIGestureRecognizerDelegate>

@end

@implementation KSNavigationController

- (void)viewDidLoad {
[super viewDidLoad];
//设置手势代理
self.interactivePopGestureRecognizer.delegate = self;
//设置NavigationBar
[self setupNavigationBar];
} //设置导航栏主题
- (void)setupNavigationBar
{
UINavigationBar *appearance = [UINavigationBar appearance];
//统一设置导航栏颜色,如果单个界面需要设置,可以在viewWillAppear里面设置,在viewWillDisappear设置回统一格式。
[appearance setBarTintColor:[UIColor getColor:@"fb9c0a"]]; //导航栏title格式
NSMutableDictionary *textAttribute = [NSMutableDictionary dictionary];
textAttribute[NSForegroundColorAttributeName] = [UIColor whiteColor];
textAttribute[NSFontAttributeName] = [UIFont systemFontOfSize:];
[appearance setTitleTextAttributes:textAttribute];
} - (void)pushViewController:(UIViewController *)viewController animated:(BOOL)animated
{
if (self.viewControllers.count > ) {
viewController.hidesBottomBarWhenPushed = YES;
UIButton *backButton = [[UIButton alloc]initWithFrame:CGRectMake(, , , )];
[backButton setImage:[UIImage imageNamed:@"back"] forState:UIControlStateNormal];
[backButton setImage:[UIImage imageNamed:@"back"] forState:UIControlStateHighlighted];
[backButton setImageEdgeInsets:UIEdgeInsetsMake(, -, , )];
[backButton addTarget:self action:@selector(popView) forControlEvents:UIControlEventTouchUpInside];
viewController.navigationItem.leftBarButtonItem = [[UIBarButtonItem alloc]initWithCustomView:backButton];
}
[super pushViewController:viewController animated:animated];
} - (void)popView
{
[self popViewControllerAnimated:YES];
} //手势代理
- (BOOL)gestureRecognizerShouldBegin:(UIGestureRecognizer *)gestureRecognizer
{
return self.childViewControllers.count > ;
} - (void)didReceiveMemoryWarning {
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
} @end

 4:MBProgressHUD的扩展1.0.0

//
// NSObject+MP.m
// MobileProject
//
// Created by wujunyang on 16/7/9.
// Copyright © 2016年 wujunyang. All rights reserved.
// #import "MBProgressHUD+MP.h" @implementation MBProgressHUD (MP) #pragma mark 显示错误信息
+ (void)showError:(NSString *)error ToView:(UIView *)view{
[self showCustomIcon:@"MBHUD_Error" Title:error ToView:view];
} + (void)showSuccess:(NSString *)success ToView:(UIView *)view
{
[self showCustomIcon:@"MBHUD_Success" Title:success ToView:view];
} + (void)showInfo:(NSString *)Info ToView:(UIView *)view
{
[self showCustomIcon:@"MBHUD_Info" Title:Info ToView:view];
} #pragma mark 显示一些信息
+ (MBProgressHUD *)showMessage:(NSString *)message ToView:(UIView *)view {
if (view == nil) view = (UIView*)[UIApplication sharedApplication].delegate.window;
// 快速显示一个提示信息
MBProgressHUD *hud = [MBProgressHUD showHUDAddedTo:view animated:YES];
hud.mode=MBProgressHUDModeText;
hud.label.text=message;
hud.label.font=CHINESE_SYSTEM();
//修改弹出窗的色
hud.bezelView.color =[UIColor whiteColor];
// 隐藏时候从父控件中移除
hud.removeFromSuperViewOnHide = YES;
//代表需要蒙版效果 hud.backgroundView.style = MBProgressHUDBackgroundStyleSolidColor;
hud.backgroundView.color = [UIColor colorWithWhite:.f alpha:0.6f];
return hud;
} //加载视图
+(void)showLoadToView:(UIView *)view{
[self showMessage:@"加载中..." ToView:view];
} /**
* 进度条View
*/
+ (MBProgressHUD *)showProgressToView:(UIView *)view Text:(NSString *)text{
if (view == nil) view = (UIView*)[UIApplication sharedApplication].delegate.window;
MBProgressHUD *hud = [MBProgressHUD showHUDAddedTo:view animated:YES];
hud.label.text=text;
hud.label.font=CHINESE_SYSTEM();
//修改弹出窗的色
hud.bezelView.color =[UIColor whiteColor];
// 代表需要蒙版效果
hud.backgroundView.style = MBProgressHUDBackgroundStyleSolidColor;
hud.backgroundView.color = [UIColor colorWithWhite:.f alpha:0.6f];
return hud;
} //快速显示一条提示信息
+ (void)showAutoMessage:(NSString *)message{ [self showAutoMessage:message ToView:nil];
} //自动消失提示,无图
+ (void)showAutoMessage:(NSString *)message ToView:(UIView *)view{
[self showMessage:message ToView:view RemainTime: Model:MBProgressHUDModeText];
} //自定义停留时间,有图
+(void)showIconMessage:(NSString *)message ToView:(UIView *)view RemainTime:(CGFloat)time{
[self showMessage:message ToView:view RemainTime:time Model:MBProgressHUDModeIndeterminate];
} //自定义停留时间,无图
+(void)showMessage:(NSString *)message ToView:(UIView *)view RemainTime:(CGFloat)time{
[self showMessage:message ToView:view RemainTime:time Model:MBProgressHUDModeText];
} +(void)showMessage:(NSString *)message ToView:(UIView *)view RemainTime:(CGFloat)time Model:(MBProgressHUDMode)model{ if (view == nil) view = (UIView*)[UIApplication sharedApplication].delegate.window;
// 快速显示一个提示信息
MBProgressHUD *hud = [MBProgressHUD showHUDAddedTo:view animated:YES];
hud.label.text=message;
hud.label.font=CHINESE_SYSTEM();
//模式
hud.mode = model;
// 隐藏时候从父控件中移除
hud.removeFromSuperViewOnHide = YES;
//修改弹出窗的色
hud.bezelView.color =[UIColor whiteColor];
// 代表需要蒙版效果
hud.backgroundView.style = MBProgressHUDBackgroundStyleSolidColor;
hud.backgroundView.color = [UIColor colorWithWhite:.f alpha:0.6f];
// 隐藏时候从父控件中移除
hud.removeFromSuperViewOnHide = YES;
// X秒之后再消失
[hud hideAnimated:YES afterDelay:time]; } + (void)showCustomIcon:(NSString *)iconName Title:(NSString *)title ToView:(UIView *)view
{
if (view == nil) view = (UIView*)[UIApplication sharedApplication].delegate.window;
// 快速显示一个提示信息
MBProgressHUD *hud = [MBProgressHUD showHUDAddedTo:view animated:YES];
hud.label.text=title;
hud.label.font=CHINESE_SYSTEM();
// 设置图片
hud.customView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:iconName]]; // 再设置模式
hud.mode = MBProgressHUDModeCustomView; // 隐藏时候从父控件中移除
hud.removeFromSuperViewOnHide = YES; //修改弹出窗的色
hud.bezelView.color =[UIColor whiteColor];
// 代表需要蒙版效果
hud.backgroundView.style = MBProgressHUDBackgroundStyleSolidColor;
hud.backgroundView.color = [UIColor colorWithWhite:.f alpha:0.6f]; // 3秒之后再消失
[hud hideAnimated:YES afterDelay:];
} + (void)hideHUDForView:(UIView *)view
{
if (view == nil) view = (UIView*)[UIApplication sharedApplication].delegate.window;
[self hideHUDForView:view animated:YES];
} + (void)hideHUD
{
[self hideHUDForView:nil];
} @end
//
// MBProgressHUD+MP.h
// MobileProject
// 当引入MBProgressHUD时把下面的代码开放出来
// 使用如下:
// [MBProgressHUD showIconMessage:@"默认图,X秒后自动消失" ToView:self.view RemainTime:3];
// 如果没有视图则可以[MBProgressHUD showIconMessage:@"默认图,X秒后自动消失" ToView:nil RemainTime:3];
// [MBProgressHUD showMessage:@"纯文字,不自动消失" ToView:self.view]; 关掉则用:[MBProgressHUD hideHUD];//使用此方法进行隐藏
// MBProgressHUD *hud = [MBProgressHUD showProgressToView:nil Text:@"loading"]; 隐藏:[hud hide:YES];
// [MBProgressHUD showAutoMessage:@"自动消失"];
// [MBProgressHUD showSuccess:@"下载完成" ToView:self.view];
// [MBProgressHUD showError:@"下载失败" ToView:self.view];
// Created by wujunyang on 16/7/9.
// Copyright © 2016年 wujunyang. All rights reserved.
// #import <Foundation/Foundation.h> #import "MBProgressHUD.h" @interface MBProgressHUD (MP) /**
* 自定义图片的提示,3s后自动消息
*
* @param text 要显示的文字
* @param icon 图片地址(建议不要太大的图片)
* @param view 要添加的view
*/
+ (void)showCustomIcon:(NSString *)iconName Title:(NSString *)title ToView:(UIView *)view; /**
* 自动消失成功提示,带默认图
*
* @param success 要显示的文字
* @param view 要添加的view
*/
+ (void)showSuccess:(NSString *)success ToView:(UIView *)view; /**
* 自动消失错误提示,带默认图
*
* @param error 要显示的错误文字
* @param view 要添加的View
*/
+ (void)showError:(NSString *)error ToView:(UIView *)view; /**
* 自动消失提示,带默认图
*
* @param Info 要显示的文字
* @param view 要添加的View
*/
+ (void)showInfo:(NSString *)Info ToView:(UIView *)view; /**
* 文字+菊花提示,不自动消失
*
* @param message 要显示的文字
* @param view 要添加的View
*
* @return MBProgressHUD
*/
+ (MBProgressHUD *)showMessage:(NSString *)message ToView:(UIView *)view; /**
* 快速显示一条提示信息
*
* @param showAutoMessage 要显示的文字
*/
+ (void)showAutoMessage:(NSString *)message; /**
* 自动消失提示,无图
*
* @param message 要显示的文字
* @param view 要添加的View
*/
+ (void)showAutoMessage:(NSString *)message ToView:(UIView *)view; /**
* 自定义停留时间,有图
*
* @param message 要显示的文字
* @param view 要添加的View
* @param time 停留时间
*/
+(void)showIconMessage:(NSString *)message ToView:(UIView *)view RemainTime:(CGFloat)time; /**
* 自定义停留时间,无图
*
* @param text 要显示的文字
* @param view 要添加的View
* @param time 停留时间
*/
+(void)showMessage:(NSString *)message ToView:(UIView *)view RemainTime:(CGFloat)time; /**
* 加载视图
*
* @param view 要添加的View
*/
+ (void)showLoadToView:(UIView *)view; /**
* 进度条View
*
* @param view 要添加的View
* @param model 进度条的样式
* @param text 显示的文字
*
* @return 返回使用
*/
+ (MBProgressHUD *)showProgressToView:(UIView *)view Text:(NSString *)text; /**
* 隐藏ProgressView
*
* @param view superView
*/
+ (void)hideHUDForView:(UIView *)view; /**
* 快速从window中隐藏ProgressView
*/
+ (void)hideHUD; @end

功能源代码(扇形进度)及Delegate运用在开放事件中、UINavigationController的封装的更多相关文章

  1. [AS3]as3画笔实例实现橡皮擦功能源代码

    [AS3]as3画笔实例实现橡皮擦功能源代码 //主容器 var main:Sprite = new Sprite(); main.mouseEnabled = false; addChild(mai ...

  2. Delegate(委托与事件)

    Delegate可以当它是一个占位符,比如你在写代码的时候并不知道你将要处理的是什么.你只需要知道你将要引入的参数类型和输出类型是什么并定义它即可.这就是书本上所传达的方法签名必须相同的意思. 系统自 ...

  3. 在vue中关于element UI 中表格实现下载功能,表头添加按钮,和点击事件失效的解决办法。

    因为在element 中表格是使用el-table的形式通过数据来支撑结构,所以,表格的样式没有自己写的灵活,所以有了没法添加按钮的烦恼.下面是解决的方法. 准备工作: 一.下载npm安装包两个 1. ...

  4. Jquery中bind(), live(), on(), delegate()四种注册事件的优缺点,建议使用on()

    jquery中注册的事件,注册事件很容易理解偏差,叫法不一样.我第一反应就是如何添加事件,使用onclick之类的,暂时不讨论js注册事件的方法. 也看到园内前辈写过相关的帖子,但不是很详细,我找到了 ...

  5. Monkey源代码分析番外篇之Android注入事件的三种方法比較

    原文:http://www.pocketmagic.net/2012/04/injecting-events-programatically-on-android/#.VEoIoIuUcaV 往下分析 ...

  6. Android开发之清除缓存功能实现方法,可以集成在自己的app中,增加一个新功能。

    作者:程序员小冰,CSDN博客:http://blog.csdn.net/qq_21376985 Android开发之清除缓存功能实现方法,可以集成在自己的app中,增加一个新功能. 下面是一个效果图 ...

  7. canvas扇形进度圈动态加载

    效果图如下:动态加载的 实现代码如下: <!DOCTYPE html> <html lang="en"> <head> <meta cha ...

  8. 考勤输入导入OA平台与考勤统计报表导出功能源代码

    注:以某某公司为例,每日签到时间为8点整   每日签退时间为17点30分 规则:公司签到签退时间在OA平台中可以视实际情况调整,当天有请假并通过工作流审批通过为有效,当天因公外出并通过工作流审批通过为 ...

  9. python实现netcat部分功能源代码

    #!/opt/local/bin/python2.7 import sys import socket import getopt import threading import subprocess ...

随机推荐

  1. 基于HT for Web 快速搭建3D机房设备面板

    以真实设备为模型,搭建出设备面板,并实时获取设备运行参数,显示在设备面板上,这相比于纯数值的设备监控系统显得更加生动直观.今天我们就在HT for Web的3D技术上完成设备面板的搭建. 我们今天模拟 ...

  2. 【Swift学习】Swift编程之旅(四)基本运算符

    Swift支持大部分标准C语言的运算符, 且改进许多特性来减少常规编码错误.如赋值符 = 不返回值, 以防止错把等号 == 写成赋值号 = 而导致Bug. 数值运算符( + , -, *, /, %等 ...

  3. Topcoder SRM 627 div1 HappyLettersDiv1 : 字符串

    Problem Statement      The Happy Letter game is played as follows: At the beginning, several players ...

  4. Application对象、Session对象、Cookie对象、Server对象初步认识

    Application对象:记录应用程序参数的对象 用于共享应用程序级信息,即多个用户共享一个Application对象.在第一个用户请求ASP.NET文件时,将启动应用程序并创建Applicatio ...

  5. Autofac Container 的简单的封装重构

    为了使用方便,对Autofac container的简单封装,记录如下,备以后用或分享给大家,欢迎讨论! using Autofac; using Autofac.Core.Lifetime; usi ...

  6. 删除Android包

    Android删除包有很多种方法,其中一种通过Intent删除,代码如下: public boolean unload (String n){ boolean res = true; try{ // ...

  7. [修复] Firemonkey 使用 DrawPath 断线问题(Android & iOS 平台)

    问题:使用 Canvas.DrawPath 绘制时,最后一点无法画到终点位置.(这个问题要在粗线才能察觉) 适用:Delphi 10 Seattle (或更早的版本) for Android & ...

  8. JDBC增删改查和查唯一的完整代码

    第一部分代码(实体类) package com.wf.entity; public class Hehe{ private int hehe_id; private String hehe_name; ...

  9. Hibernate(九)__OpenSessionInView解决懒加载问题

    什么是OpenSessionInView? 在hibernate中使用load方法时,并未把数据真正获取时就关闭了session,当我们真正想获取数据时会迫使load加载数据,而此时session已关 ...

  10. 【转】MySQL的Replace into 与Insert into on duplicate key update真正的不同之处

    原文链接:http://www.jb51.net/article/47090.htm   今天听同事介绍oracle到mysql的数据migration,他用了Insert into ..... on ...