zoukankan      html  css  js  c++  java
  • IOS访问系统的设置和将图片保存到系统的相册

    1.今天无聊就想起来了一个事情,就是想访问下系统自带的设置和将图片保存系统的相册里面去,废话不说了,直接看代码:

    一.访问系统自带的设置界面的方法,一直原来都没苹果公司的禁止使用,感觉这个方法还是不怎么行呀??希望大家提出宝贵的意见!!!

      [[UIApplication sharedApplication]openURL:[NSURL URLWithString:UIApplicationOpenSettingsURLString]];

    二.将图片保存到系统的相册里面去的代码:

       UIImageWriteToSavedPhotosAlbum(self.imageView.image, nil, nil, nil);

      UIAlertView *alterview = [[UIAlertView alloc]initWithTitle:@"保存照片成功" message:@"照片保存在相册里面,请查看" delegate:self cancelButtonTitle:@"OK" otherButtonTitles:nil, nil];

      [alterview show];

  • 相关阅读:
    10. Regular Expression Matching
    9. Palindrome Number
    8. String to Integer (atoi)
    7. Reverse Integer
    6. ZigZag Conversion
    《设计模式
    《设计模式
    《设计模式
    《linux 计划任务》- cron
    《设计模式
  • 原文地址:https://www.cnblogs.com/zhufeng1994/p/4738603.html
Copyright © 2011-2022 走看看