iOS手寫(xiě)簽名

廢話不多說(shuō)牲剃,直接上代碼。代碼直接黏貼可用,自定義畫(huà)板View。

//
// MMGraphicView.h
// yuxi-manager
//
// Created by Sven on 2017/6/28.
// Copyright ? 2017年 ylink. All rights reserved.
//

import <UIKit/UIKit.h>

// 畫(huà)布
typedef void(^returnSignPhotoBlock)(UIImage * img);
@interface MMGraphicView : UIView
{
CGPoint _start;
CGPoint _move;
CGMutablePathRef _path;
NSMutableArray _pathArray;
CGFloat _lineWidth;
UIColor _color;
}
@property (nonatomic,assign)CGFloat lineWidth;/
< 線寬 /
@property (nonatomic,strong)UIColor color;/
< 線的顏色 */
@property (nonatomic,strong)NSMutableArray pathArray;
@property(nonatomic,copy)returnSignPhotoBlock block;
-(UIImage
)getDrawingImg;
@end

//
// MMGraphicView.m
// yuxi-manager
//
// Created by Sven on 2017/6/28.
// Copyright ? 2017年 ylink. All rights reserved.
//

import "MMGraphicView.h"

@implementation MMGraphicView

  • (UIViewController )viewController
    {
    for (UIView
    next = [self superview]; next; next = next.superview) {
    UIResponder *nextResponder = [next nextResponder];
    if ([nextResponder isKindOfClass:[UIViewController class]]) {
    return (UIViewController *)nextResponder;
    }
    }
    return nil;
    }

  • (instancetype)initWithFrame:(CGRect)frame {
    if (self = [super initWithFrame:frame]) {
    _move = CGPointMake(0, 0);
    _start = CGPointMake(0, 0);
    _lineWidth = 2;
    _color = [UIColor redColor];
    _pathArray = [NSMutableArray array];

      //創(chuàng)建保存功能
      UIButton *but = [UIButton buttonWithType:UIButtonTypeSystem];
      but.frame = CGRectMake(0, self.bounds.size.height-60, 100, 60);
      [but setTitle:@"保存簽名" forState:UIControlStateNormal];
      [but addTarget:self action:@selector(savePhoto) forControlEvents:UIControlEventTouchUpInside];
      [self addSubview:but];
      
      
      UIButton *undoBtn = [UIButton buttonWithType:UIButtonTypeSystem];
      undoBtn.frame = CGRectMake(110, self.bounds.size.height-60, 100, 60);
      [undoBtn setTitle:@"撤銷(xiāo)" forState:UIControlStateNormal];
      [undoBtn addTarget:self action:@selector(undoBtnEvent) forControlEvents:UIControlEventTouchUpInside];
      [self addSubview:undoBtn];
      
      UIButton *clearBtn = [UIButton buttonWithType:UIButtonTypeSystem];
      clearBtn.frame = CGRectMake(220, self.bounds.size.height-60, 100, 60);
      [clearBtn setTitle:@"清除啊" forState:UIControlStateNormal];
      [clearBtn addTarget:self action:@selector(clearBtnEvent) forControlEvents:UIControlEventTouchUpInside];
      [self addSubview:clearBtn];
      
      
      UIButton * backBtn = [UIButton buttonWithType:UIButtonTypeCustom];
      backBtn.frame = CGRectMake(330, self.bounds.size.height-60, 100, 60);
      [backBtn addTarget:self action:@selector(back) forControlEvents:UIControlEventTouchUpInside];
      [backBtn setTitle:@"返回" forState:UIControlStateNormal];
      [backBtn setTitleColor:[UIColor redColor] forState:UIControlStateNormal];
      [self addSubview:backBtn];
    

    } return self;}

-(void)back{

[[self viewController].navigationController popViewControllerAnimated:YES];}
  • (void)drawRect:(CGRect)rect {
    // 獲取圖形上下文
    CGContextRef context = UIGraphicsGetCurrentContext();
    [self drawPicture:context]; //畫(huà)圖
    }
  • (void)drawPicture:(CGContextRef)context {
    for (NSArray * attribute in _pathArray) {
    //將路徑添加到上下文中
    CGPathRef pathRef = (__bridge CGPathRef)(attribute[0]);
    CGContextAddPath(context, pathRef);
    //設(shè)置上下文屬性
    [attribute[1] setStroke];
    CGContextSetLineWidth(context, [attribute[2] floatValue]);
    //繪制線條
    CGContextDrawPath(context, kCGPathStroke);
    }
    }
  • (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event {
    UITouch *touch = [touches anyObject];
    _path = CGPathCreateMutable(); //創(chuàng)建路徑
NSArray *attributeArry = @[(__bridge id)(_path),_color,[NSNumber numberWithFloat:_lineWidth]];

[_pathArray addObject:attributeArry]; //路徑及屬性數(shù)組數(shù)組
_start = [touch locationInView:self]; //起始點(diǎn)
CGPathMoveToPoint(_path, NULL,_start.x, _start.y);}
  • (void)touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event {
    // 釋放路徑
    CGPathRelease(_path);}
  • (void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event {
    UITouch *touch = [touches anyObject];
    _move = [touch locationInView:self];
    //將點(diǎn)添加到路徑上
    CGPathAddLineToPoint(_path, NULL, _move.x, _move.y);
[self setNeedsDisplay];
}

pragma mark --點(diǎn)擊事件--

  • (void)savePhoto {
if (_pathArray.count) {
    UIGraphicsBeginImageContext(self.frame.size);
    CGContextRef context = UIGraphicsGetCurrentContext();
    UIRectClip(CGRectMake(0, 0, self.frame.size.width, self.frame.size.height-100));
    [self.layer renderInContext:context];
    
    UIImage *image = UIGraphicsGetImageFromCurrentImageContext();

// UIImageWriteToSavedPhotosAlbum(image, self, nil, NULL);
UIImageWriteToSavedPhotosAlbum(image, self, @selector(image:didFinishSavingWithError:contextInfo:), NULL);
self.block(image);
}
else{
UIAlertView* alert = [[UIAlertView alloc]initWithTitle:@"alert" message:@"請(qǐng)您先繪制圖形" delegate:nil cancelButtonTitle:nil otherButtonTitles:@"確定", nil];

    [alert show];
    
}}
  • (void)image: (UIImage *) image didFinishSavingWithError: (NSError *) error contextInfo: (NSString *)str{
NSString *msg = nil ;

if(error != NULL){
    
    msg = @"保存圖片失敗" ;
    
}else{
    
    msg = @"保存圖片成功" ;
    
}

UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"保存圖片結(jié)果提示"
                      
                                                message:msg
                      
                                               delegate:self
                      
                                      cancelButtonTitle:@"確定"
                      
                                      otherButtonTitles:nil];

[alert show];

}

-(UIImage *)getDrawingImg{
if (_pathArray.count) {
UIGraphicsBeginImageContext(self.frame.size);
CGContextRef context = UIGraphicsGetCurrentContext();
UIRectClip(CGRectMake(0, 0, self.frame.size.width, self.frame.size.height));
[self.layer renderInContext:context];

    UIImage *image = UIGraphicsGetImageFromCurrentImageContext();
    
    return image;
}
UIAlertView* alert = [[UIAlertView alloc]initWithTitle:@"alert" message:@"請(qǐng)您先繪制圖形" delegate:nil cancelButtonTitle:nil otherButtonTitles:@"確定", nil];
[alert show];
return nil;}

-(void)undoBtnEvent
{
[_pathArray removeLastObject];
[self setNeedsDisplay];
}

-(void)clearBtnEvent
{
[_pathArray removeAllObjects];
[self setNeedsDisplay];
}

@end

很好用的封裝浪慌,帶刪除上一步畫(huà)筆、清楚所有軌跡朴则、保存圖片 权纤、保存回調(diào)提醒、自定義畫(huà)筆顏色乌妒、粗細(xì)大小等功能汹想。如果幫到您,請(qǐng)點(diǎn)個(gè)??~

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末撤蚊,一起剝皮案震驚了整個(gè)濱河市欧宜,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌拴魄,老刑警劉巖,帶你破解...
    沈念sama閱讀 211,743評(píng)論 6 492
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件席镀,死亡現(xiàn)場(chǎng)離奇詭異匹中,居然都是意外死亡,警方通過(guò)查閱死者的電腦和手機(jī)豪诲,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,296評(píng)論 3 385
  • 文/潘曉璐 我一進(jìn)店門(mén)顶捷,熙熙樓的掌柜王于貴愁眉苦臉地迎上來(lái),“玉大人屎篱,你說(shuō)我怎么就攤上這事服赎。” “怎么了交播?”我有些...
    開(kāi)封第一講書(shū)人閱讀 157,285評(píng)論 0 348
  • 文/不壞的土叔 我叫張陵重虑,是天一觀的道長(zhǎng)。 經(jīng)常有香客問(wèn)我秦士,道長(zhǎng)缺厉,這世上最難降的妖魔是什么? 我笑而不...
    開(kāi)封第一講書(shū)人閱讀 56,485評(píng)論 1 283
  • 正文 為了忘掉前任隧土,我火速辦了婚禮提针,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘曹傀。我一直安慰自己辐脖,他們只是感情好,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,581評(píng)論 6 386
  • 文/花漫 我一把揭開(kāi)白布皆愉。 她就那樣靜靜地躺著嗜价,像睡著了一般艇抠。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上炭剪,一...
    開(kāi)封第一講書(shū)人閱讀 49,821評(píng)論 1 290
  • 那天练链,我揣著相機(jī)與錄音,去河邊找鬼奴拦。 笑死媒鼓,一個(gè)胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的错妖。 我是一名探鬼主播绿鸣,決...
    沈念sama閱讀 38,960評(píng)論 3 408
  • 文/蒼蘭香墨 我猛地睜開(kāi)眼,長(zhǎng)吁一口氣:“原來(lái)是場(chǎng)噩夢(mèng)啊……” “哼暂氯!你這毒婦竟也來(lái)了潮模?” 一聲冷哼從身側(cè)響起,我...
    開(kāi)封第一講書(shū)人閱讀 37,719評(píng)論 0 266
  • 序言:老撾萬(wàn)榮一對(duì)情侶失蹤痴施,失蹤者是張志新(化名)和其女友劉穎擎厢,沒(méi)想到半個(gè)月后,有當(dāng)?shù)厝嗽跇?shù)林里發(fā)現(xiàn)了一具尸體辣吃,經(jīng)...
    沈念sama閱讀 44,186評(píng)論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡动遭,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,516評(píng)論 2 327
  • 正文 我和宋清朗相戀三年,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了神得。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片厘惦。...
    茶點(diǎn)故事閱讀 38,650評(píng)論 1 340
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡,死狀恐怖哩簿,靈堂內(nèi)的尸體忽然破棺而出宵蕉,到底是詐尸還是另有隱情,我是刑警寧澤节榜,帶...
    沈念sama閱讀 34,329評(píng)論 4 330
  • 正文 年R本政府宣布羡玛,位于F島的核電站,受9級(jí)特大地震影響宗苍,放射性物質(zhì)發(fā)生泄漏缝左。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,936評(píng)論 3 313
  • 文/蒙蒙 一浓若、第九天 我趴在偏房一處隱蔽的房頂上張望渺杉。 院中可真熱鬧,春花似錦挪钓、人聲如沸是越。這莊子的主人今日做“春日...
    開(kāi)封第一講書(shū)人閱讀 30,757評(píng)論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)倚评。三九已至浦徊,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間天梧,已是汗流浹背盔性。 一陣腳步聲響...
    開(kāi)封第一講書(shū)人閱讀 31,991評(píng)論 1 266
  • 我被黑心中介騙來(lái)泰國(guó)打工, 沒(méi)想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留呢岗,地道東北人冕香。 一個(gè)月前我還...
    沈念sama閱讀 46,370評(píng)論 2 360
  • 正文 我出身青樓,卻偏偏與公主長(zhǎng)得像后豫,于是被迫代替她去往敵國(guó)和親悉尾。 傳聞我的和親對(duì)象是個(gè)殘疾皇子,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,527評(píng)論 2 349

推薦閱讀更多精彩內(nèi)容