- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
我开始使用 UICOllectionview 加载自定义相册,相册加载正常,数据来 self 的服务器 (SQL-JSON-NSARRAY-NSDictionary) 并填充到单元格中,但是现在我希望当用户选择该单元格以全尺寸加载带有该图像的新 UIVIewController 时(这样他们就可以查看/打印/共享等)
但是我陷入了“准备转场”方法,因为我无法从该特定单元格中提取任何信息
作为测试,我现在只想让 NSLOG 说“用户选择了专辑名称 %@”
到目前为止,这是我的代码,我们将不胜感激...
#import "AlbumViewController.h"
#import "AlbumCustomCell.h"
#import "PhotosInAlbumsViewController.h"
@interface AlbumViewController ()
@end
@implementation AlbumViewController
- (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.
/// Grab Photo Album information (pics,title,date) From Server
NSString *myURL1 = [ NSString stringWithFormat: @"http://mywebsiteaddress.com/index.php"];
NSData *data = [NSData dataWithContentsOfURL: [NSURL URLWithString:myURL1]];
NSError *error;
NSDictionary *json = [NSJSONSerialization JSONObjectWithData:data options:kNilOptions error:&error];
NSArray *items = [json objectForKey:@"users"];
photoalbumarray = items;
// NSLog(@"%@", photoalbumarray);
}
- (void)didReceiveMemoryWarning
{
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
}
-(NSInteger)numberOfSectionsInCollectionView:(UICollectionView *)collectionView {
return 1;
}
-(NSInteger)collectionView:(UICollectionView *)collectionView numberOfItemsInSection:(NSInteger)section {
return [photoalbumarray count];
}
-(UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath {
static NSString *cellID = @"CelliD";
AlbumCustomCell *myCell = (AlbumCustomCell *) [collectionView dequeueReusableCellWithReuseIdentifier:cellID forIndexPath:indexPath];
// this above states to setup the cell using the Identifier I specified in Sotry board, so that cell is constantly reused
if (indexPath.section == 0) {
NSDictionary *item = [photoalbumarray objectAtIndex:[indexPath row]];
myCell.titleincell.text = [item objectForKey:@"title"]; // this puts the title in the cell
teststring = [item objectForKey:@"title"];
myCell.dateincell.text = [item objectForKey:@"date"]; // this puts the date in the data label in the cell
// myCell.imageincell1.image = [UIImage imageNamed:[item objectForKey:@"img1"]]; // this puts the picture in the cell
myCell.imageincell2.image = [UIImage imageNamed:[item objectForKey:@"img2"]]; // this puts the picture in the cell
myCell.imageincell3.image = [UIImage imageNamed:[item objectForKey:@"img3"]]; // this puts the picture in the cell
// IMAGE 1
NSString *picture1 = [item objectForKey:@"img1"];
NSURL *imageURL1 = [NSURL URLWithString:picture1];
NSData * imageData1 = [NSData dataWithContentsOfURL:imageURL1];
UIImage * image1 = [UIImage imageWithData:imageData1];
myCell.imageincell1.image = image1;
myCell.imageincell1.alpha = 0.0;
[UIView animateWithDuration:1.5 animations:^{
myCell.imageincell1.alpha = 1.0;
}];
// IMAGE 2
NSString *picture2 = [item objectForKey:@"img2"];
NSURL *imageURL2 = [NSURL URLWithString:picture2];
NSData * imageData2 = [NSData dataWithContentsOfURL:imageURL2];
UIImage * image2 = [UIImage imageWithData:imageData2];
myCell.imageincell2.image = image2;
myCell.imageincell2.alpha = 0.0;
[UIView animateWithDuration:1.5 animations:^{
myCell.imageincell2.alpha = 1.0;
}];
// I MAGE 3
NSString *picture3 = [item objectForKey:@"img3"];
NSURL *imageURL3 = [NSURL URLWithString:picture3];
NSData * imageData3 = [NSData dataWithContentsOfURL:imageURL3];
UIImage * image3 = [UIImage imageWithData:imageData3];
myCell.imageincell3.image = image3;
myCell.imageincell3.alpha = 0.0;
[UIView animateWithDuration:1.5 animations:^{
myCell.imageincell3.alpha = 1.0;
}];
}
return myCell;
}
// SEGUE TRANSITION FROM ALBUMS TO PHOTO
- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender {
if ([segue.identifier isEqualToString:@"showPhotoAlbum"]) {
NSLog(@"Prepare for Segue to load Specific Photo Album");
NSLog(@"User Selected this cell or the name of the title in the cell which comes from a NSDictionary =>");
// EXAMPLE NSLOG TO SHOW => User Selected - Album Name
// Where album name is actually the album name grabbed form the server based on the selected row
}
}
@end
这样你就可以看到来自服务器的我的 JSON 数据,就是这样
2012-10-01 13:02:53.856 CB Photo[3957:907] (
{
date = "2012-10-01 07:23:01";
id = 1;
img1 = "http://b2fdev.ca/demo/CBPhoto/pic1.jpg";
img2 = "http://b2fdev.ca/demo/CBPhoto/pic2.jpg";
img3 = "http://b2fdev.ca/demo/CBPhoto/pic3.jpg";
title = "Paul and Jenna's Wedding 2012";
},
{
date = "2012-10-01 05:23:23";
id = 2;
img1 = "http://core1.ca/wp-content/themes/custom-community/images/block4.png";
img2 = "http://core1.ca/wp-content/themes/custom-community/images/block3.png";
img3 = "http://core1.ca/wp-content/themes/custom-community/images/block2.png";
title = "Core 1";
}
)
最佳答案
你是这个意思吗?
NSArray *indexPaths = [self.collectionView indexPathsForSelectedItems];
DetailViewController *destViewController = segue.destinationViewController;
NSIndexPath *index = [indexPaths objectAtIndex:0];
NSLog(@"%d", index.section * 2 + index.row);
此打印数组中的索引为 2 x 任意数组;
关于ios - UICollectionView - Segue - 确实选择了特定的单元格,LOG,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12677775/
不同的 LogCat 方法是: Log.v(); // Verbose Log.d(); // Debug Log.i(); // Info Log.w(); // Warning Log.e();
在android群里,经常会有人问我,android log是怎么用的,今天我就把从网上以及sdk里东拼西凑过来,让大家先一睹为快,希望对大家入门android log有一定的帮助. android
关闭。这个问题是opinion-based 。目前不接受答案。 想要改进这个问题吗?更新问题,以便 editing this post 可以用事实和引文来回答它。 . 已关闭 4 年前。 社区 12
我正在尝试使用 sonarlint 检查代码质量.上面的问题概要,我不明白为什么它要说要大写。但是 this discussion与上述建议相反。哪一个应该被认为是正确的? 最佳答案 这没有正确答案,
随着 n 变大,log*(log n) 和 log(log* n) 这两个函数会更快吗? 这里,log* 函数是迭代对数,定义如下: 我怀疑它们是相同的,只是写法不同,但它们之间有什么区别吗? 最佳答
作为家庭作业,我被要求在 O(log(n)) 中编写一个算法,我可以计算出我编写的算法的复杂度为 O(log(n) + log(n/2) + log(n/4) + log(n/8) + ... + l
我正在使用 Tomee。日志文件夹包含这样的文件 localhost_access_log.2016-12-02.txt localhost.2016-12-02.log catalina.2016-
Android Log.v、Log.d、Log.i、Log.e 等的 ios 等效项是什么?同样在 android 上,我使用 Android 设备监视器和 logcat 来访问我的手机日志,我需要在
我认为下面的代码是 O(log log n) 因为它里面有 i*i 但我对 log n 感到困惑> 和 log (log n)。 for (i=2; i*i<=number; i++) { if
我正在修改 kvm 模块,并在内核代码中添加了 printk 语句。运行虚拟机后,printk 为我提供了错误地址和有关 guest 操作系统的其他信息。 我需要从这个信息中生成统计信息。当我使用 d
我有一个部署为 Windows Azure Web 角色的 WCF 服务。 我正在使用 Enterprise Library 进行异常处理,并且在我的本地 Development Fabric 中,似
关闭。这个问题是opinion-based 。目前不接受答案。 想要改进这个问题吗?更新问题,以便 editing this post 可以用事实和引文来回答它。 . 已关闭 9 年前。 Improv
在 Go 的生产中使用 log.SetFlags(log.LstdFlags | log.Lshortfile) 是好的做法(至少是一般做法)吗?我想知道在生产中这样做是否存在性能或安全问题。因为它不
我想知道什么更快: double value = Math.log(a) - Math.log(b); 或 double value = Math.log(a/b); 我计算值的方式是否会对性能产生影
我有数百个子例程使用 log.Println() 写入日志文件 我正在使用 log.Println 写入 error.log 文件。 func main() { e, err := os.Open
我将 Nuxt 与 SSR 一起使用,并希望有类似于 apaches 的 access.log 和 error.log 的东西 我特别感兴趣的是每次调用的响应时间。 我在 nuxt 文档中找不到任何内
我知道以前有人问过这个问题,但我相信这是一个不同的问题。 Nginx 在 www-data 下运行: $ ps -eo "%U %G %a" | grep nginx root root
我在我的日志文件中发现了一个非常奇怪的条目 Jan 29 01:35:30 vs-proj-handy sshd[5316]: Received disconnect from 130.207.203
对于我正在开发的应用程序,我希望在开发过程中和发布时简化故障排除。我希望能够检索到对 Log 的调用,以了解在 USB 调试中没有连接手机的情况下运行应用程序时的调用,以便可以检索并发送给我。例如,当
我试图捕获 panic 并记录错误: func (s *server) SayHello(ctx context.Context, in *pb.HelloRequest) (*pb.HelloRep
我是一名优秀的程序员,十分优秀!