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

首頁 > 系統 > iOS > 正文

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

2020-07-26 02:49:04
字體:
來源:轉載
供稿:網友

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

一,效果圖。

二,工程圖。

三,代碼。

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.}

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

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 庆城县| 揭阳市| 简阳市| 奉贤区| 安西县| 屯门区| 泾源县| 怀安县| 鄂伦春自治旗| 政和县| 屏东市| 保亭| 东至县| 安图县| 东平县| 东阿县| 仁怀市| 兰州市| 图木舒克市| 扎兰屯市| 贵港市| 临洮县| 县级市| 马山县| 隆尧县| 沾益县| 福州市| 裕民县| 绵竹市| 政和县| 高安市| 乳山市| 阿合奇县| 金山区| 股票| 晋城| 民乐县| 息烽县| 青河县| 花垣县| 嘉荫县|