iphone手机相册显示图片的时候,较大的图片会先显示成为背景图自适应屏幕大小小的

为什么苹果手机扣扣发送图片的时候不能显示全部 但是明明手机相册里面有200多张??!!看图_百度知道
为什么苹果手机扣扣发送图片的时候不能显示全部 但是明明手机相册里面有200多张??!!看图
/zhidao/pic/item/4a36acaf2edda3cc90c40abb04ed;&/zhidao/wh%3D450%2C600/sign=250afd07a706f3aa0dd4ea/4a36acaf2edda3cc90c40abb04ed.hiphotos
我有更好的答案
我的手机也是这个问题原来不是这样的,重新下载后就变成这样了
设置有问题的就不可以
账册是不是设置了密码
你再点击一下就出来了
点击什么?
因为挤满了
其他类似问题
为您推荐:
苹果手机的相关知识
等待您来回答
下载知道APP
随时随地咨询
出门在外也不愁iOS UI_相册
MainViewController.m
Created by dllo on 15/8/6.
Copyright (c) 2015年 zhozhicheng. All rights reserved.
#import MainViewController.h
#import SecondViewController.h
@interface MainViewController ()
//建立一个数组,存放图片
@property(nonatomic,retain)NSMutableArray *
@implementation MainViewController
-(void)dealloc
[_arr release];
[super dealloc];
- (void)viewDidLoad {
[super viewDidLoad];
// Do any additional setup after loading the view.
//相册的目录界面,先改成不透明
self.navigationController.navigationBar.translucent=NO;
self.view.backgroundColor=[UIColor orangeColor];
//设置标题
self.navigationItem.title=@相册;
//初始化数组
self.arr = [[NSMutableArray alloc] init];
//七张视图
for (int i = 1; i & 8; i++) {
NSString *imageName=[NSString stringWithFormat:@h%d.jpeg,i];
UIImage *image=[UIImage imageNamed:imageName];
[self.arr addObject:image];
//建立七个button
for (int i = 0; i & 3; i++) {
for (int j = 0; j & 3; j++) {
if (3 * i + j & 7) {
UIButton *button = [UIButton buttonWithType:UIButtonTypeCustom];
button.tag=3 * i + j +1;
button.frame=CGRectMake(j * 120 + 20, i * 120 + 100, 100, 100);
[self.view addSubview:button];
button.layer.borderWidth=1;
//把图片放到对应的button
[button setImage:(UIImage *)self.arr[3 * i + j] forState:UIControlStateNormal];
[button addTarget:self action:@selector(click:) forControlEvents:UIControlEventTouchUpInside];
-(void)click:(UIButton *)button
//点击跳到下一页
SecondViewController *secVC=[[SecondViewController alloc] init];
[self.navigationController pushViewController:secVC animated:YES];
[secVC release];
//传一个number值
secVC.number=button.tag - 1;
- (void)didReceiveMemoryWarning {
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
#pragma mark - Navigation
// In a storyboard-based application, you will often want to do a little preparation before navigation
- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender {
// Get the new view controller using [segue destinationViewController].
// Pass the selected object to the new view controller.
SecondViewController.h
Created by dllo on 15/8/6.
Copyright (c) 2015年 zhozhicheng. All rights reserved.
@interface SecondViewController : UIViewController
@property(nonatomic,assign)NSI
SecondViewController.m
Created by dllo on 15/8/6.
Copyright (c) 2015年 zhozhicheng. All rights reserved.
#import SecondViewController.h
//定义两个宏,宽'高
#define WIDTH self.view.frame.size.width
#define HEIGHT self.view.frame.size.height
@interface SecondViewController ()
@property(nonatomic,retain)UIScrollView *scrollV
@implementation SecondViewController
-(void)dealloc
[_scrollView release];
[super dealloc];
- (void)viewDidLoad {
[super viewDidLoad];
// Do any additional setup after loading the view.
//创建滚动页面
self.scrollView=[[UIScrollView alloc] initWithFrame:self.view.frame];
[self.view addSubview:self.scrollView];
[_scrollView release];
//让视图滚动起来属性,滚动范围
//-100是为了下面的滚动圆点
self.scrollView.contentSize=CGSizeMake(7 * WIDTH, HEIGHT - 100);
//按页进行滚动
self.scrollView.pagingEnabled=YES;
//滚动的图片
for (int i = 1; i & 8; i++) {
NSString *imageName =[NSString stringWithFormat:@h%d.jpeg,i];
//创建滚动的七个视图
UIImageView *imageView=[[UIImageView alloc] initWithImage:[UIImage imageNamed:imageName]];
//设置图片的起始位置
imageView.frame=CGRectMake(i * WIDTH - WIDTH, 0, WIDTH, HEIGHT-100);
[self.scrollView addSubview:imageView];
[imageView release];
// 关闭边界回弹效果
self.scrollView.bounces=NO;
//关闭滚动条
self.scrollView.showsHorizontalScrollIndicator=NO;
self.scrollView.showsVerticalScrollIndicator=NO;
//设置代理人
self.scrollView.delegate=
//创建圆点
UIPageControl *page=[[UIPageControl alloc] initWithFrame:CGRectMake(100, 580, 200, 40)];
page.backgroundColor=[UIColor whiteColor];
[self.view addSubview:page];
[page release];
//圆点个数
page.numberOfPages=7;
//圆点颜色
page.pageIndicatorTintColor=[UIColor cyanColor];
//选中点的颜色
page.currentPageIndicatorTintColor=[UIColor yellowColor];
page.tag=1000;
//显示第几页在第一张
self.scrollView.contentOffset=CGPointMake(WIDTH * self.number, 0);
NSString *str=[NSString stringWithFormat:@第%ld张,self.number+1];
self.navigationItem.title=
//点随着图片滚动动
-(void)scrollViewDidScroll:(UIScrollView *)scrollView
UIPageControl *page=(UIPageControl *)[self.view viewWithTag:1000];
page.currentPage =self.scrollView.contentOffset.x / WIDTH;
NSString *str=[NSString stringWithFormat:@第%ld张,page.currentPage + 1];
self.navigationItem.title=
- (void)didReceiveMemoryWarning {
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
#pragma mark - Navigation
// In a storyboard-based application, you will often want to do a little preparation before navigation
- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender {
// Get the new view controller using [segue destinationViewController].
// Pass the selected object to the new view controller.
![这里写图片描述](http://img.blog.csdn.net/52590)
(window.slotbydup=window.slotbydup || []).push({
id: '2467140',
container: s,
size: '1000,90',
display: 'inlay-fix'
(window.slotbydup=window.slotbydup || []).push({
id: '2467141',
container: s,
size: '1000,90',
display: 'inlay-fix'
(window.slotbydup=window.slotbydup || []).push({
id: '2467143',
container: s,
size: '1000,90',
display: 'inlay-fix'
(window.slotbydup=window.slotbydup || []).push({
id: '2467148',
container: s,
size: '1000,90',
display: 'inlay-fix'五一节快乐!这个小长假估计大家都已经安排了各种精彩的节目,趁着天气晴好不冷不热,...
12英寸MacBook被认为是未来笔记本设计的先驱者,下面就带来它的开箱上手体验。
小编推荐给各位几款质优价廉的应用,相信它们一定会成为各位居家旅行、撩汉撩妹的关键...
红外对焦将有助于夜拍表现,同时对于捕捉包括人类在内的活体物,可呈现更好的面部色彩...
我们不要指望新摄像头系统出现在即将到来的Galaxy Note 6上,按照市场预期,iPhone 7 ...
本周新游阵容不太华丽,不过有《北欧女神:解析起源》和《战龟》,倒是多了几分肃杀之...
先抓几个人压压惊还是有必要的,要不然岂不是白花这么多钱。
其实三星显示器分部的日子也不好过,所以趁机就把负责人给炒了。
刀塔的故事背景我想不少朋友已经很熟悉,再重复灌输难免显得有些啰嗦,详细的剧情小...
游戏的背景设置在战火纷飞的国家中,此时叛党已经有了一定的实力了,而他们所希望的就...
在游戏中随着玩家的冒险深入,越来越多的新角色将会加入到玩家的冒险团队当中,不同的...
SQUARE ENIX 手游《VALKYRIE ANATOMIA -THE ORIGIN-(北欧女神:解析起源)》本周四登...
《Matcha 3》是开发商 InterAre 推出的一款画风相当小清新的笔记写作应用,用户们又习...
本周四,独立游戏工作室Lonely Woof 在苹果商城上架了他们的处女作《Egz》,这部开发...
Gameguru 的《环绕赛车》推出了续作《环绕赛车2(Loop Drive 2)》,在前作的时候我们...
该保护套能够在不牺牲iPhone各项功能的前提下装备摄像系统。
通过 iPhone 可以设定要“播放”的味道,单独和混搭都有不同的感受。
在当今这个以拍摄,存储和分享为主的新纪元中,用户对存储设备的容量要求也在不断提高...
除了iCloud之外,这也是另一个解决储存空间不足的方案。
除了精织尼龙表带,我们也一并对其他款表带进行了评测汇总,相信在这些文字之中,你会...
这样神圣三位一体的配件,值不值得你拥有?
讲真,今年的 iPhone 7 如果仍然是 16GB 起步,苹果可能要流失一些用户。
有这样的一个Smart Connector,第三方配件厂商是要好好利用。
大家有遇到过手机相册没有照片但还是占了很多内存的情况么?
注册时间 最后登录
在线时间1 小时 UID
主题帖子人气
小苹果, 积分 17, 距离下一级还需 33 积分
就像图片里的,手机明明没有录制的视频和照片
(43.15 KB, 下载次数: 4)
09:46 上传
注册时间 最后登录
在线时间1 小时 UID
主题帖子人气
求助求助求助!
注册时间 最后登录
在线时间32 小时 UID
主题帖子人气
iCloud 相片关了
注册时间 最后登录
在线时间492 小时 UID
主题帖子人气
没遇到过,与iCloud有关吗?
注册时间 最后登录
在线时间276 小时 UID
主题帖子人气
刷机吧、或者抹掉所有内容、我见多了、
注册时间 最后登录
在线时间1 小时 UID
主题帖子人气
iCloud 相片关了
已经关了但还是这样
注册时间 最后登录
在线时间1 小时 UID
主题帖子人气
没遇到过,与iCloud有关吗?
不知道啊.....iCloud已经关掉了
注册时间 最后登录
在线时间1 小时 UID
主题帖子人气
刷机吧、或者抹掉所有内容、我见多了、
只能抹掉了吧?
注册时间 最后登录
在线时间32 小时 UID
主题帖子人气
我的之前也是这样,关了iCloud 和清除最近删除后,再用PP助手清理一下就好了。后来又开启iCloud 后照片又变成二倍大。
威锋旗下产品
Hi~我是威威!
沪公网安备 29号 | 沪ICP备号-1
新三板上市公司威锋科技(836555)
增值电信业务经营许可证:
Powered by Discuz!}

我要回帖

更多关于 图片适应屏幕大小 的文章

更多推荐

版权声明:文章内容来源于网络,版权归原作者所有,如有侵权请点击这里与我们联系,我们将及时删除。

点击添加站长微信