LXFPhotoHelper 正在参加 2021 年度 OSC 中国开源项目评选,请投票支持!
LXFPhotoHelper 在 2021 年度 OSC 中国开源项目评选 中已获得 {{ projectVoteCount }} 票,请投票支持!
2021 年度 OSC 中国开源项目评选 正在火热进行中,快来投票支持你喜欢的开源项目!
2021 年度 OSC 中国开源项目评选 >>> 中场回顾
LXFPhotoHelper 获得 2021 年度 OSC 中国开源项目评选「最佳人气项目」 !
授权协议 MIT
操作系统 iOS
软件类型 开源软件
所属分类 iOS代码库图像(Image)
开源组织
地区 国产
投 递 者 LinXunFeng
适用人群 未知
收录时间 2017-04-28

软件简介

一行代码实现调用系统相机与相册,可配置导航栏背景与字体颜色。

自定义样式

// 配置LXFPhotoConfig *config = [[LXFPhotoConfig alloc] init];
config.navBarTintColor = [UIColor greenColor];
config.navBarBgColor = [UIColor purpleColor];
config.navBarTitleColor = [UIColor yellowColor];// sourceType : // UIImagePickerControllerSourceTypeCamera // UIImagePickerControllerSourceTypePhotoLibrary 等[[LXFPhotoHelper creatWithSourceType:sourceType config:config] getSourceWithSelectImageBlock:^(id data) {    if ([data isKindOfClass:[UIImage class]]) { // 图片
        [self.imageView setImage:(UIImage *)data];
    } else {        NSLog(@"所选内容非图片对象");
    }
}];

默认样式

默认样式可避免自定义导航栏后出现的问题(导航栏背景、标题、按键皆为白色,看不清楚)

// config 传入 nil[[LXFPhotoHelper creatWithSourceType:sourceType config:nil] getSourceWithSelectImageBlock:^(id data) {    if ([data isKindOfClass:[UIImage class]]) { // 图片
        [self.imageView setImage:(UIImage *)data];
    } else {        NSLog(@"所选内容非图片对象");
    }
}];

展开阅读全文

代码

的 Gitee 指数为
超过 的项目

评论

点击引领话题📣 发布并加入讨论🔥
暂无内容
发表了博客
{{o.pubDate | formatDate}}

{{formatAllHtml(o.title)}}

{{parseInt(o.replyCount) | bigNumberTransform}}
{{parseInt(o.viewCount) | bigNumberTransform}}
没有更多内容
暂无内容
发表了问答
{{o.pubDate | formatDate}}

{{formatAllHtml(o.title)}}

{{parseInt(o.replyCount) | bigNumberTransform}}
{{parseInt(o.viewCount) | bigNumberTransform}}
没有更多内容
暂无内容
暂无内容
0 评论
3 收藏
分享
OSCHINA
登录后可查看更多优质内容
返回顶部
顶部