How to get image in collectionview cell from json using objective c
self->SCImageArr = [[NSMutableArray alloc]init];
self->SCLabelArr = [[NSMutableArray alloc]init];
NSDictionary *SCDic = [maindic objectForKey:@"specialcategories"];
for (NSDictionary *SCDictionary in SCDic){
NSString *strimage = [SCDictionary objectForKey:@"image"];
[self->SCImageArr addObject:strimage];
NSLog(@"SCImage :%@", strimage);
NSString *strname = [SCDictionary objectForKey:@"text"];
[self->SCLabelArr addObject:strname];
NSLog(@"SClabelname :%@", strname);
}
[self.specialCategoriesCollectionView reloadData];
my cell code here
- (UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath{
static NSString *CellIndentifer = @"Cell";
SpecialCategoriesCell *cell = [collectionView dequeueReusableCellWithReuseIdentifier:CellIndentifer forIndexPath:indexPath];
cell.categoriesImages.image = [UIImage imageWithData:SCImageArr];
cell.categoriesNameLabel.text = self.specialCategoriesLabel[indexPath.row];
return cell;
}
How to get image in collectionview cell from json using objective c?
objective-c iphone uicollectionview uiimageview
add a comment |
self->SCImageArr = [[NSMutableArray alloc]init];
self->SCLabelArr = [[NSMutableArray alloc]init];
NSDictionary *SCDic = [maindic objectForKey:@"specialcategories"];
for (NSDictionary *SCDictionary in SCDic){
NSString *strimage = [SCDictionary objectForKey:@"image"];
[self->SCImageArr addObject:strimage];
NSLog(@"SCImage :%@", strimage);
NSString *strname = [SCDictionary objectForKey:@"text"];
[self->SCLabelArr addObject:strname];
NSLog(@"SClabelname :%@", strname);
}
[self.specialCategoriesCollectionView reloadData];
my cell code here
- (UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath{
static NSString *CellIndentifer = @"Cell";
SpecialCategoriesCell *cell = [collectionView dequeueReusableCellWithReuseIdentifier:CellIndentifer forIndexPath:indexPath];
cell.categoriesImages.image = [UIImage imageWithData:SCImageArr];
cell.categoriesNameLabel.text = self.specialCategoriesLabel[indexPath.row];
return cell;
}
How to get image in collectionview cell from json using objective c?
objective-c iphone uicollectionview uiimageview
Please name your variables starting with a lowercase. Don't use multiple arrays for values that are synce'd. Instead parse the dictionary into a custom class. Also what isstrimage
? Is that an URL? Is that Base64Image data?
– Larme
Nov 20 '18 at 13:07
add a comment |
self->SCImageArr = [[NSMutableArray alloc]init];
self->SCLabelArr = [[NSMutableArray alloc]init];
NSDictionary *SCDic = [maindic objectForKey:@"specialcategories"];
for (NSDictionary *SCDictionary in SCDic){
NSString *strimage = [SCDictionary objectForKey:@"image"];
[self->SCImageArr addObject:strimage];
NSLog(@"SCImage :%@", strimage);
NSString *strname = [SCDictionary objectForKey:@"text"];
[self->SCLabelArr addObject:strname];
NSLog(@"SClabelname :%@", strname);
}
[self.specialCategoriesCollectionView reloadData];
my cell code here
- (UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath{
static NSString *CellIndentifer = @"Cell";
SpecialCategoriesCell *cell = [collectionView dequeueReusableCellWithReuseIdentifier:CellIndentifer forIndexPath:indexPath];
cell.categoriesImages.image = [UIImage imageWithData:SCImageArr];
cell.categoriesNameLabel.text = self.specialCategoriesLabel[indexPath.row];
return cell;
}
How to get image in collectionview cell from json using objective c?
objective-c iphone uicollectionview uiimageview
self->SCImageArr = [[NSMutableArray alloc]init];
self->SCLabelArr = [[NSMutableArray alloc]init];
NSDictionary *SCDic = [maindic objectForKey:@"specialcategories"];
for (NSDictionary *SCDictionary in SCDic){
NSString *strimage = [SCDictionary objectForKey:@"image"];
[self->SCImageArr addObject:strimage];
NSLog(@"SCImage :%@", strimage);
NSString *strname = [SCDictionary objectForKey:@"text"];
[self->SCLabelArr addObject:strname];
NSLog(@"SClabelname :%@", strname);
}
[self.specialCategoriesCollectionView reloadData];
my cell code here
- (UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath{
static NSString *CellIndentifer = @"Cell";
SpecialCategoriesCell *cell = [collectionView dequeueReusableCellWithReuseIdentifier:CellIndentifer forIndexPath:indexPath];
cell.categoriesImages.image = [UIImage imageWithData:SCImageArr];
cell.categoriesNameLabel.text = self.specialCategoriesLabel[indexPath.row];
return cell;
}
How to get image in collectionview cell from json using objective c?
objective-c iphone uicollectionview uiimageview
objective-c iphone uicollectionview uiimageview
edited Nov 20 '18 at 12:01


Rahul Agarwal
2,17551027
2,17551027
asked Nov 20 '18 at 11:54
Rehan MeoRehan Meo
135
135
Please name your variables starting with a lowercase. Don't use multiple arrays for values that are synce'd. Instead parse the dictionary into a custom class. Also what isstrimage
? Is that an URL? Is that Base64Image data?
– Larme
Nov 20 '18 at 13:07
add a comment |
Please name your variables starting with a lowercase. Don't use multiple arrays for values that are synce'd. Instead parse the dictionary into a custom class. Also what isstrimage
? Is that an URL? Is that Base64Image data?
– Larme
Nov 20 '18 at 13:07
Please name your variables starting with a lowercase. Don't use multiple arrays for values that are synce'd. Instead parse the dictionary into a custom class. Also what is
strimage
? Is that an URL? Is that Base64Image data?– Larme
Nov 20 '18 at 13:07
Please name your variables starting with a lowercase. Don't use multiple arrays for values that are synce'd. Instead parse the dictionary into a custom class. Also what is
strimage
? Is that an URL? Is that Base64Image data?– Larme
Nov 20 '18 at 13:07
add a comment |
1 Answer
1
active
oldest
votes
This is how you should do it:
dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_HIGH, 0), ^{
NSURL* url = [NSURL URLWithString:SCImageArr[indexPath.row]];
NSData* data = [NSData dataWithContentsOfURL:url];
UIImage* image = [UIImage imageWithData:data];
dispatch_async(dispatch_get_main_queue(), ^{
cell.categoriesImages.image = image;
});
});
Also: it has no relation to the question, but don't give variables capitalized names
dataFromBase64String is not working
– Rehan Meo
Nov 20 '18 at 12:08
does it return nil in data?
– Andrey Chernukha
Nov 20 '18 at 12:09
No known class method for selector 'dataFromBase64String:'
– Rehan Meo
Nov 20 '18 at 12:12
@RehanMeo I've updated my answer. try again
– Andrey Chernukha
Nov 20 '18 at 12:18
thanks bro image still not showing on collection view
– Rehan Meo
Nov 20 '18 at 12:27
|
show 4 more comments
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53392462%2fhow-to-get-image-in-collectionview-cell-from-json-using-objective-c%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
This is how you should do it:
dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_HIGH, 0), ^{
NSURL* url = [NSURL URLWithString:SCImageArr[indexPath.row]];
NSData* data = [NSData dataWithContentsOfURL:url];
UIImage* image = [UIImage imageWithData:data];
dispatch_async(dispatch_get_main_queue(), ^{
cell.categoriesImages.image = image;
});
});
Also: it has no relation to the question, but don't give variables capitalized names
dataFromBase64String is not working
– Rehan Meo
Nov 20 '18 at 12:08
does it return nil in data?
– Andrey Chernukha
Nov 20 '18 at 12:09
No known class method for selector 'dataFromBase64String:'
– Rehan Meo
Nov 20 '18 at 12:12
@RehanMeo I've updated my answer. try again
– Andrey Chernukha
Nov 20 '18 at 12:18
thanks bro image still not showing on collection view
– Rehan Meo
Nov 20 '18 at 12:27
|
show 4 more comments
This is how you should do it:
dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_HIGH, 0), ^{
NSURL* url = [NSURL URLWithString:SCImageArr[indexPath.row]];
NSData* data = [NSData dataWithContentsOfURL:url];
UIImage* image = [UIImage imageWithData:data];
dispatch_async(dispatch_get_main_queue(), ^{
cell.categoriesImages.image = image;
});
});
Also: it has no relation to the question, but don't give variables capitalized names
dataFromBase64String is not working
– Rehan Meo
Nov 20 '18 at 12:08
does it return nil in data?
– Andrey Chernukha
Nov 20 '18 at 12:09
No known class method for selector 'dataFromBase64String:'
– Rehan Meo
Nov 20 '18 at 12:12
@RehanMeo I've updated my answer. try again
– Andrey Chernukha
Nov 20 '18 at 12:18
thanks bro image still not showing on collection view
– Rehan Meo
Nov 20 '18 at 12:27
|
show 4 more comments
This is how you should do it:
dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_HIGH, 0), ^{
NSURL* url = [NSURL URLWithString:SCImageArr[indexPath.row]];
NSData* data = [NSData dataWithContentsOfURL:url];
UIImage* image = [UIImage imageWithData:data];
dispatch_async(dispatch_get_main_queue(), ^{
cell.categoriesImages.image = image;
});
});
Also: it has no relation to the question, but don't give variables capitalized names
This is how you should do it:
dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_HIGH, 0), ^{
NSURL* url = [NSURL URLWithString:SCImageArr[indexPath.row]];
NSData* data = [NSData dataWithContentsOfURL:url];
UIImage* image = [UIImage imageWithData:data];
dispatch_async(dispatch_get_main_queue(), ^{
cell.categoriesImages.image = image;
});
});
Also: it has no relation to the question, but don't give variables capitalized names
edited Nov 20 '18 at 12:52
answered Nov 20 '18 at 11:57


Andrey ChernukhaAndrey Chernukha
13k1371141
13k1371141
dataFromBase64String is not working
– Rehan Meo
Nov 20 '18 at 12:08
does it return nil in data?
– Andrey Chernukha
Nov 20 '18 at 12:09
No known class method for selector 'dataFromBase64String:'
– Rehan Meo
Nov 20 '18 at 12:12
@RehanMeo I've updated my answer. try again
– Andrey Chernukha
Nov 20 '18 at 12:18
thanks bro image still not showing on collection view
– Rehan Meo
Nov 20 '18 at 12:27
|
show 4 more comments
dataFromBase64String is not working
– Rehan Meo
Nov 20 '18 at 12:08
does it return nil in data?
– Andrey Chernukha
Nov 20 '18 at 12:09
No known class method for selector 'dataFromBase64String:'
– Rehan Meo
Nov 20 '18 at 12:12
@RehanMeo I've updated my answer. try again
– Andrey Chernukha
Nov 20 '18 at 12:18
thanks bro image still not showing on collection view
– Rehan Meo
Nov 20 '18 at 12:27
dataFromBase64String is not working
– Rehan Meo
Nov 20 '18 at 12:08
dataFromBase64String is not working
– Rehan Meo
Nov 20 '18 at 12:08
does it return nil in data?
– Andrey Chernukha
Nov 20 '18 at 12:09
does it return nil in data?
– Andrey Chernukha
Nov 20 '18 at 12:09
No known class method for selector 'dataFromBase64String:'
– Rehan Meo
Nov 20 '18 at 12:12
No known class method for selector 'dataFromBase64String:'
– Rehan Meo
Nov 20 '18 at 12:12
@RehanMeo I've updated my answer. try again
– Andrey Chernukha
Nov 20 '18 at 12:18
@RehanMeo I've updated my answer. try again
– Andrey Chernukha
Nov 20 '18 at 12:18
thanks bro image still not showing on collection view
– Rehan Meo
Nov 20 '18 at 12:27
thanks bro image still not showing on collection view
– Rehan Meo
Nov 20 '18 at 12:27
|
show 4 more comments
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53392462%2fhow-to-get-image-in-collectionview-cell-from-json-using-objective-c%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Please name your variables starting with a lowercase. Don't use multiple arrays for values that are synce'd. Instead parse the dictionary into a custom class. Also what is
strimage
? Is that an URL? Is that Base64Image data?– Larme
Nov 20 '18 at 13:07