国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 系統 > iOS > 正文

IOS圖片的原生(Graphics)詳解及實例

2019-10-21 18:46:28
字體:
來源:轉載
供稿:網友

IOS圖片的原生(Graphics)詳解及實例

一,效果圖。

IOS圖片的原生(Graphics),IOS圖片的原生詳解

二,工程圖。

IOS圖片的原生(Graphics),IOS圖片的原生詳解

三,代碼。

RootViewController.h

#import <UIKit/UIKit.h>@interface RootViewController : UIViewController@end 

RootViewController.m

#import "RootViewController.h"@interface RootViewController ()@end@implementation RootViewController- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil{  self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];  if (self) {    // Custom initialization  }  return self;}- (void)viewDidLoad{  [super viewDidLoad];  // Do any additional setup after loading the view.    //背景圖  [self addView];  }#pragma -mark -functions//背景圖-(void)addView{  UIImageView *imageView=[[UIImageView alloc]initWithFrame:CGRectMake(50, 100, 44, 44)];  imageView.image=[self defaultImage];  [self.view addSubview:imageView];}//圖片原生-(UIImage *)defaultImage {    static UIImage *defaultImage = nil;  static dispatch_once_t onceToken;  dispatch_once(&onceToken, ^{    UIGraphicsBeginImageContextWithOptions(CGSizeMake(20.f, 13.f), NO, 0.0f);        [[UIColor blackColor] setFill];    [[UIBezierPath bezierPathWithRect:CGRectMake(0, 0, 20, 1)] fill];    [[UIBezierPath bezierPathWithRect:CGRectMake(0, 5, 20, 1)] fill];    [[UIBezierPath bezierPathWithRect:CGRectMake(0, 10, 20, 1)] fill];        [[UIColor whiteColor] setFill];    [[UIBezierPath bezierPathWithRect:CGRectMake(0, 1, 20, 2)] fill];    [[UIBezierPath bezierPathWithRect:CGRectMake(0, 6, 20, 2)] fill];    [[UIBezierPath bezierPathWithRect:CGRectMake(0, 11, 20, 2)] fill];        defaultImage = UIGraphicsGetImageFromCurrentImageContext();    UIGraphicsEndImageContext();      });  return defaultImage;}- (void)didReceiveMemoryWarning{  [super didReceiveMemoryWarning];  // Dispose of any resources that can be recreated.}

感謝閱讀,希望能幫助到大家,謝謝大家對本站的支持!


注:相關教程知識閱讀請移步到IOS開發頻道。
發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 朝阳市| 建阳市| 周口市| 道孚县| 红原县| 沂源县| 辽源市| 柳江县| 长顺县| 甘德县| 西和县| 井陉县| 龙川县| 弥渡县| 林甸县| 大英县| 郁南县| 新津县| 永清县| 武安市| 苍溪县| 太保市| 南陵县| 阳泉市| 自治县| 肥西县| 连州市| 陇南市| 平远县| 彰化市| 保康县| 夏河县| 彭阳县| 禄劝| 定州市| 西宁市| 论坛| 天全县| 湛江市| 冀州市| 杂多县|