我被困在某个地方,
我正在使用 PHP 从 MYSQL 数据库中动态提取图像,这一切都可以,直到我从 URL 中检索照片的名称。我想在 UIScroll View 上动态插入缩略图,以便用户可以水平滚动以查看所有图像、照片描述、照片摘要,我还希望他们单击并打开更多详细信息
到目前为止,这是我的代码
-(void)getItems
{
NSString *root = URL
NSURL *url = [NSURL URLWithString:[NSString stringWithFormat:@"%@/phpfile", root]];
NSURLRequest *request = [NSURLRequest requestWithURL:url];
AFJSONRequestOperation *operation = [AFJSONRequestOperation JSONRequestOperationWithRequest:request success:^(NSURLRequest *request, NSHTTPURLResponse *response, id JSON)
{
[self.object removeAllObjects];
id results = [JSON valueForKeyPath:@"ids"];
[results enumerateObjectsUsingBlock:^(id obj, NSUInteger idx, BOOL *stop)
{
[self.object addObject:[NSString stringWithFormat:@"%@",[obj valueForKey:@"item1"]]];
[self.object2 addObject:[NSString stringWithFormat:@"%@",[obj valueForKey:@"item2"]]];
-(void)DidLoad
{
//initializing arrays to hold data
//Initiate arrays that hold data
object1 = [[NSMutableArray alloc] init];
object2 = [[NSMutableArray alloc] init];
我需要在水平 UIscroll 上显示对象 1,以便用户可以在单击时滚动查看更多缩略图(以及名称和描述),(UIscroll 视图应打开详细信息)
所有这些信息都将从数据库中提取