手寫板,簽字版

1.建一個view

.h文件復(fù)制以下代碼


/**

*? 畫布

*/

@interface SKGraphicView : 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;

-(UIImage*)getDrawingImg;

2 .m文件

復(fù)制以下代碼

- (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:@"撤銷" 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];

}

return self;

}

- (void)drawRect:(CGRect)rect {

// 獲取圖形上下文

CGContextRef context = UIGraphicsGetCurrentContext();

[self drawPicture:context]; //畫圖

}

- (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]; //起始點

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];

//將點添加到路徑上

CGPathAddLineToPoint(_path, NULL, _move.x, _move.y);

[self setNeedsDisplay];

}

#pragma mark --點擊事件--

- (void)savePhoto {

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();

UIImageWriteToSavedPhotosAlbum(image, self, nil, NULL);

}

else{

UIAlertView* alert = [[UIAlertView alloc]initWithTitle:@"alert" message:@"請您先繪制圖形" delegate:nil cancelButtonTitle:nil 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:@"請您先繪制圖形" delegate:nil cancelButtonTitle:nil otherButtonTitles:@"確定", nil];

[alert show];

return nil;

}

-(void)undoBtnEvent

{

[_pathArray removeLastObject];

[self setNeedsDisplay];

}

-(void)clearBtnEvent

{

[_pathArray removeAllObjects];

[self setNeedsDisplay];

}


3在控制器中包含你建立的那個view


調(diào)用以下代碼就OK 了

SKGraphicView *view = [[SKGraphicView alloc] initWithFrame:CGRectMake(0, 130, kwidth, [UIScreen mainScreen].bounds.size.height - 130)];

view.backgroundColor = [UIColor whiteColor];

view.color = [UIColor blackColor];

view.lineWidth = 10;

[self.view addSubview:view];

4. 大功告成

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末彻舰,一起剝皮案震驚了整個濱河市琉苇,隨后出現(xiàn)的幾起案子汹桦,更是在濱河造成了極大的恐慌秆撮,老刑警劉巖收壕,帶你破解...
    沈念sama閱讀 210,978評論 6 490
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件歼捐,死亡現(xiàn)場離奇詭異,居然都是意外死亡你画,警方通過查閱死者的電腦和手機抵碟,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 89,954評論 2 384
  • 文/潘曉璐 我一進店門桃漾,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人拟逮,你說我怎么就攤上這事撬统。” “怎么了敦迄?”我有些...
    開封第一講書人閱讀 156,623評論 0 345
  • 文/不壞的土叔 我叫張陵恋追,是天一觀的道長。 經(jīng)常有香客問我罚屋,道長苦囱,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 56,324評論 1 282
  • 正文 為了忘掉前任沿后,我火速辦了婚禮沿彭,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘尖滚。我一直安慰自己,他們只是感情好瞧柔,可當我...
    茶點故事閱讀 65,390評論 5 384
  • 文/花漫 我一把揭開白布漆弄。 她就那樣靜靜地躺著,像睡著了一般造锅。 火紅的嫁衣襯著肌膚如雪撼唾。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 49,741評論 1 289
  • 那天哥蔚,我揣著相機與錄音倒谷,去河邊找鬼。 笑死糙箍,一個胖子當著我的面吹牛渤愁,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播深夯,決...
    沈念sama閱讀 38,892評論 3 405
  • 文/蒼蘭香墨 我猛地睜開眼抖格,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了咕晋?” 一聲冷哼從身側(cè)響起雹拄,我...
    開封第一講書人閱讀 37,655評論 0 266
  • 序言:老撾萬榮一對情侶失蹤,失蹤者是張志新(化名)和其女友劉穎掌呜,沒想到半個月后滓玖,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 44,104評論 1 303
  • 正文 獨居荒郊野嶺守林人離奇死亡质蕉,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,451評論 2 325
  • 正文 我和宋清朗相戀三年势篡,在試婚紗的時候發(fā)現(xiàn)自己被綠了翩肌。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點故事閱讀 38,569評論 1 340
  • 序言:一個原本活蹦亂跳的男人離奇死亡殊霞,死狀恐怖摧阅,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情绷蹲,我是刑警寧澤棒卷,帶...
    沈念sama閱讀 34,254評論 4 328
  • 正文 年R本政府宣布,位于F島的核電站祝钢,受9級特大地震影響比规,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜拦英,卻給世界環(huán)境...
    茶點故事閱讀 39,834評論 3 312
  • 文/蒙蒙 一蜒什、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧疤估,春花似錦灾常、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,725評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至慷荔,卻和暖如春雕什,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背显晶。 一陣腳步聲響...
    開封第一講書人閱讀 31,950評論 1 264
  • 我被黑心中介騙來泰國打工贷岸, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留,地道東北人磷雇。 一個月前我還...
    沈念sama閱讀 46,260評論 2 360
  • 正文 我出身青樓偿警,卻偏偏與公主長得像,于是被迫代替她去往敵國和親倦春。 傳聞我的和親對象是個殘疾皇子户敬,可洞房花燭夜當晚...
    茶點故事閱讀 43,446評論 2 348

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

  • iOS開發(fā)系列--網(wǎng)絡(luò)開發(fā) 概覽 大部分應(yīng)用程序都或多或少會牽扯到網(wǎng)絡(luò)開發(fā),例如說新浪微博睁本、微信等尿庐,這些應(yīng)用本身可...
    lichengjin閱讀 3,644評論 2 7
  • //設(shè)置尺寸為屏幕尺寸的時候self.window = [[UIWindow alloc] initWithFra...
    LuckTime閱讀 797評論 0 0
  • VLC的集成和使用 VLC介紹 VLC Media Player (VideoLAN) 為 Windows、Lin...
    Pocket閱讀 19,541評論 75 66
  • 近日來天氣越發(fā)的冷了起來呢堰,雖然還沒有真正的進入冬季抄瑟,卻總是會在晚上睡覺的時候裹緊被子。可能是體質(zhì)的緣故皮假,總是怕冷鞋拟,...
    落日熔金閱讀 424評論 0 2
  • 屏氣凝神,看完了電影《念念》惹资,這部張艾嘉導(dǎo)演的影片贺纲,以其慣有的細膩筆觸,講述了三個成年人成長的故事褪测。 三個受傷的小...
    東籬澄子閱讀 860評論 0 3