logo
  • 教程列表
  • SO官方文檔
  • 設定檢視背景
    • 設定檢視背景
    • 填寫 UIView 的背景影象
    • 設定檢視背景與影象
    • 建立漸變背景檢視
  1. StackOverflow 文件
  2. iOS 教程
  3. 設定檢視背景
  4. 填寫 UIView 的背景影象

填寫 UIView 的背景影象

Created: November-22, 2018

Objective-C

 UIGraphicsBeginImageContext(self.view.frame.size);
 [[UIImage imageNamed:@"image.png"] drawInRect:self.view.bounds];
 UIImage *image = UIGraphicsGetImageFromCurrentImageContext();
 UIGraphicsEndImageContext();     
 self.view.backgroundColor = [UIColor colorWithPatternImage:image];
  • 設定檢視背景與影象
  • 設定檢視背景

Copyright © 2018. All right reserved

tastones.com 备案号:鲁ICP备18045372号-1

  • 關於本站
  • 免責聲明