How to get image in collectionview cell from json using objective c












-2















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?










share|improve this question

























  • 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
















-2















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?










share|improve this question

























  • 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














-2












-2








-2








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?










share|improve this question
















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






share|improve this question















share|improve this question













share|improve this question




share|improve this question








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 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

















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












1 Answer
1






active

oldest

votes


















0














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






share|improve this answer


























  • 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











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
});


}
});














draft saved

draft discarded


















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









0














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






share|improve this answer


























  • 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
















0














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






share|improve this answer


























  • 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














0












0








0







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






share|improve this answer















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







share|improve this answer














share|improve this answer



share|improve this answer








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



















  • 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


















draft saved

draft discarded




















































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.




draft saved


draft discarded














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





















































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







Popular posts from this blog

MongoDB - Not Authorized To Execute Command

Npm cannot find a required file even through it is in the searched directory

in spring boot 2.1 many test slices are not allowed anymore due to multiple @BootstrapWith