Check setImageWithURL image is loaded or place holder image is set Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern) Data science time! April 2019 and salary with experience The Ask Question Wizard is Live!image is not getting loaded in viewios. ScrollView only showing one subview with imageDisplaying remote images in an UIImageview downloading progressively or like lazyloadingUIImageView does not load image from URL iphoneHTTP call runs first time but then waits foreverUITableView cell will not loade img with setImageWithUrlHow to change size of a tableview if there is no image to loadHow to load url link to imageview properly and how to manage the image in cache?UIImageView missing images in Launch Screen on deviceHow to load a image into dynamically created imageview from a URL in android?
Does the Black Tentacles spell do damage twice at the start of turn to an already restrained creature?
Why are vacuum tubes still used in amateur radios?
Delete free apps from library
Why complex landing gears are used instead of simple,reliability and light weight muscle wire or shape memory alloys?
"klopfte jemand" or "jemand klopfte"?
Printing attributes of selection in ArcPy?
Sally's older brother
How to write capital alpha?
Relating to the President and obstruction, were Mueller's conclusions preordained?
Moving a wrapfig vertically to encroach partially on a subsection title
What is the origin of 落第?
How many time has Arya actually used Needle?
Is openssl rand command cryptographically secure?
What initially awakened the Balrog?
Did any compiler fully use 80-bit floating point?
Caught masturbating at work
Are the endpoints of the domain of a function counted as critical points?
New Order #6: Easter Egg
Is it dangerous to install hacking tools on my private linux machine?
How to change the tick of the color bar legend to black
How can I prevent/balance waiting and turtling as a response to cooldown mechanics
Simple Http Server
What does it mean that physics no longer uses mechanical models to describe phenomena?
Was Kant an Intuitionist about mathematical objects?
Check setImageWithURL image is loaded or place holder image is set
Announcing the arrival of Valued Associate #679: Cesar Manara
Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern)
Data science time! April 2019 and salary with experience
The Ask Question Wizard is Live!image is not getting loaded in viewios. ScrollView only showing one subview with imageDisplaying remote images in an UIImageview downloading progressively or like lazyloadingUIImageView does not load image from URL iphoneHTTP call runs first time but then waits foreverUITableView cell will not loade img with setImageWithUrlHow to change size of a tableview if there is no image to loadHow to load url link to imageview properly and how to manage the image in cache?UIImageView missing images in Launch Screen on deviceHow to load a image into dynamically created imageview from a URL in android?
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;
[imageView setImageWithURL: url placeholderImage: [UIImage imageNamed:@"DefaultBanner"]];
Using this code I am loading an image from a URL. The form does not submit until the image is not loaded from URL.
Can anyone assist me to fix this code?
objective-c uiimageview
add a comment |
[imageView setImageWithURL: url placeholderImage: [UIImage imageNamed:@"DefaultBanner"]];
Using this code I am loading an image from a URL. The form does not submit until the image is not loaded from URL.
Can anyone assist me to fix this code?
objective-c uiimageview
Can you please post more of your code, so that we can see the context where this code is running. See Minimal, Complete, Verifiable Example for guidelines.
– Mike Hay
Mar 22 at 13:43
add a comment |
[imageView setImageWithURL: url placeholderImage: [UIImage imageNamed:@"DefaultBanner"]];
Using this code I am loading an image from a URL. The form does not submit until the image is not loaded from URL.
Can anyone assist me to fix this code?
objective-c uiimageview
[imageView setImageWithURL: url placeholderImage: [UIImage imageNamed:@"DefaultBanner"]];
Using this code I am loading an image from a URL. The form does not submit until the image is not loaded from URL.
Can anyone assist me to fix this code?
objective-c uiimageview
objective-c uiimageview
edited Mar 22 at 12:01
Rahul Parikh
asked Mar 22 at 11:52
Rahul ParikhRahul Parikh
2319
2319
Can you please post more of your code, so that we can see the context where this code is running. See Minimal, Complete, Verifiable Example for guidelines.
– Mike Hay
Mar 22 at 13:43
add a comment |
Can you please post more of your code, so that we can see the context where this code is running. See Minimal, Complete, Verifiable Example for guidelines.
– Mike Hay
Mar 22 at 13:43
Can you please post more of your code, so that we can see the context where this code is running. See Minimal, Complete, Verifiable Example for guidelines.
– Mike Hay
Mar 22 at 13:43
Can you please post more of your code, so that we can see the context where this code is running. See Minimal, Complete, Verifiable Example for guidelines.
– Mike Hay
Mar 22 at 13:43
add a comment |
1 Answer
1
active
oldest
votes
This could be a thread concurrency problem, if you handle everything in the main thread it will freeze until the asset is totally downloaded. I will recommend send it to a serial queue in a background thread and after the download is done, send it to the main thread.
an example of that:
-(void) GCDSerialQueuesDownload
NSString * anURL = @"myURL.com";
dispatch_queue_t serialQueue = dispatch_queue_create("com.dispatch.feed.serial.queue",DISPATCH_QUEUE_SERIAL);
dispatch_queue_t mainQueue = dispatch_get_main_queue();
void (^addFeedBlock)(NSString*) = ^(NSString* url)
//your download here
dispatch_async(mainQueue,^
//after finish you download
);
;
dispatch_async(serialQueue, ^
addFeedBlock(anURL);
);
A good source
add a comment |
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%2f55299024%2fcheck-setimagewithurl-image-is-loaded-or-place-holder-image-is-set%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 could be a thread concurrency problem, if you handle everything in the main thread it will freeze until the asset is totally downloaded. I will recommend send it to a serial queue in a background thread and after the download is done, send it to the main thread.
an example of that:
-(void) GCDSerialQueuesDownload
NSString * anURL = @"myURL.com";
dispatch_queue_t serialQueue = dispatch_queue_create("com.dispatch.feed.serial.queue",DISPATCH_QUEUE_SERIAL);
dispatch_queue_t mainQueue = dispatch_get_main_queue();
void (^addFeedBlock)(NSString*) = ^(NSString* url)
//your download here
dispatch_async(mainQueue,^
//after finish you download
);
;
dispatch_async(serialQueue, ^
addFeedBlock(anURL);
);
A good source
add a comment |
This could be a thread concurrency problem, if you handle everything in the main thread it will freeze until the asset is totally downloaded. I will recommend send it to a serial queue in a background thread and after the download is done, send it to the main thread.
an example of that:
-(void) GCDSerialQueuesDownload
NSString * anURL = @"myURL.com";
dispatch_queue_t serialQueue = dispatch_queue_create("com.dispatch.feed.serial.queue",DISPATCH_QUEUE_SERIAL);
dispatch_queue_t mainQueue = dispatch_get_main_queue();
void (^addFeedBlock)(NSString*) = ^(NSString* url)
//your download here
dispatch_async(mainQueue,^
//after finish you download
);
;
dispatch_async(serialQueue, ^
addFeedBlock(anURL);
);
A good source
add a comment |
This could be a thread concurrency problem, if you handle everything in the main thread it will freeze until the asset is totally downloaded. I will recommend send it to a serial queue in a background thread and after the download is done, send it to the main thread.
an example of that:
-(void) GCDSerialQueuesDownload
NSString * anURL = @"myURL.com";
dispatch_queue_t serialQueue = dispatch_queue_create("com.dispatch.feed.serial.queue",DISPATCH_QUEUE_SERIAL);
dispatch_queue_t mainQueue = dispatch_get_main_queue();
void (^addFeedBlock)(NSString*) = ^(NSString* url)
//your download here
dispatch_async(mainQueue,^
//after finish you download
);
;
dispatch_async(serialQueue, ^
addFeedBlock(anURL);
);
A good source
This could be a thread concurrency problem, if you handle everything in the main thread it will freeze until the asset is totally downloaded. I will recommend send it to a serial queue in a background thread and after the download is done, send it to the main thread.
an example of that:
-(void) GCDSerialQueuesDownload
NSString * anURL = @"myURL.com";
dispatch_queue_t serialQueue = dispatch_queue_create("com.dispatch.feed.serial.queue",DISPATCH_QUEUE_SERIAL);
dispatch_queue_t mainQueue = dispatch_get_main_queue();
void (^addFeedBlock)(NSString*) = ^(NSString* url)
//your download here
dispatch_async(mainQueue,^
//after finish you download
);
;
dispatch_async(serialQueue, ^
addFeedBlock(anURL);
);
A good source
answered Mar 23 at 1:10
Pedro TrujilloPedro Trujillo
16227
16227
add a comment |
add a comment |
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%2f55299024%2fcheck-setimagewithurl-image-is-loaded-or-place-holder-image-is-set%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
Can you please post more of your code, so that we can see the context where this code is running. See Minimal, Complete, Verifiable Example for guidelines.
– Mike Hay
Mar 22 at 13:43