国产探花免费观看_亚洲丰满少妇自慰呻吟_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開發頻道。
發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 鄂州市| 汉沽区| 阳高县| 高密市| 长春市| 霞浦县| 新河县| 沂南县| 达州市| 安阳市| 乐都县| 文登市| 连山| 永兴县| 奇台县| 克东县| 屏南县| 齐齐哈尔市| 贵港市| 班戈县| 香格里拉县| 安图县| 姜堰市| 本溪市| 渭南市| 东阿县| 瓦房店市| 黄梅县| 楚雄市| 海伦市| 林西县| 炉霍县| 武乡县| 滦平县| 东海县| 绥中县| 罗定市| 昭通市| 永胜县| 海盐县| 望都县|