How do I find an activity indicator in a UITableViewCell on completion of multiple UIWebView requests?
I am pretty new to Objective-C and iOS programming.
I have a SummaryUITableViewCell
(a custom class inheriting from UITableViewCell
) which contains an Activity Indicator (loadingSpinner
) and a UIWebView (webView
).
My app gets a list of URLs to load, then presents the table view, one cell per URL.
In cellForRowAtIndexPath
I start the animation for the loading spinner and call cell.webView loadRequest:URL
.
Everything works fine and webViewDidFinishLoad
gets called once per URL (it has just an NSLog
statement in it for now). What I can't figure out is how to find the appropriate loadingSpinner
so that I can stop the animation and hide it.
ios objective-c xcode uitableview uiwebview
add a comment |
I am pretty new to Objective-C and iOS programming.
I have a SummaryUITableViewCell
(a custom class inheriting from UITableViewCell
) which contains an Activity Indicator (loadingSpinner
) and a UIWebView (webView
).
My app gets a list of URLs to load, then presents the table view, one cell per URL.
In cellForRowAtIndexPath
I start the animation for the loading spinner and call cell.webView loadRequest:URL
.
Everything works fine and webViewDidFinishLoad
gets called once per URL (it has just an NSLog
statement in it for now). What I can't figure out is how to find the appropriate loadingSpinner
so that I can stop the animation and hide it.
ios objective-c xcode uitableview uiwebview
Each cell should be its own web view delegate, then it can simply stop its own loading spinner
– Paulw11
Nov 12 '18 at 23:06
add a comment |
I am pretty new to Objective-C and iOS programming.
I have a SummaryUITableViewCell
(a custom class inheriting from UITableViewCell
) which contains an Activity Indicator (loadingSpinner
) and a UIWebView (webView
).
My app gets a list of URLs to load, then presents the table view, one cell per URL.
In cellForRowAtIndexPath
I start the animation for the loading spinner and call cell.webView loadRequest:URL
.
Everything works fine and webViewDidFinishLoad
gets called once per URL (it has just an NSLog
statement in it for now). What I can't figure out is how to find the appropriate loadingSpinner
so that I can stop the animation and hide it.
ios objective-c xcode uitableview uiwebview
I am pretty new to Objective-C and iOS programming.
I have a SummaryUITableViewCell
(a custom class inheriting from UITableViewCell
) which contains an Activity Indicator (loadingSpinner
) and a UIWebView (webView
).
My app gets a list of URLs to load, then presents the table view, one cell per URL.
In cellForRowAtIndexPath
I start the animation for the loading spinner and call cell.webView loadRequest:URL
.
Everything works fine and webViewDidFinishLoad
gets called once per URL (it has just an NSLog
statement in it for now). What I can't figure out is how to find the appropriate loadingSpinner
so that I can stop the animation and hide it.
ios objective-c xcode uitableview uiwebview
ios objective-c xcode uitableview uiwebview
asked Nov 12 '18 at 22:55
Ben HolnessBen Holness
1,00811633
1,00811633
Each cell should be its own web view delegate, then it can simply stop its own loading spinner
– Paulw11
Nov 12 '18 at 23:06
add a comment |
Each cell should be its own web view delegate, then it can simply stop its own loading spinner
– Paulw11
Nov 12 '18 at 23:06
Each cell should be its own web view delegate, then it can simply stop its own loading spinner
– Paulw11
Nov 12 '18 at 23:06
Each cell should be its own web view delegate, then it can simply stop its own loading spinner
– Paulw11
Nov 12 '18 at 23:06
add a comment |
1 Answer
1
active
oldest
votes
You want each of your SummaryUITableViewCell
to implement UIWebViewDelegate
and handle the webViewDidFinishLoad
call themselves. Then you can easily hide the spinners each time the UIWebView
loads. Here is one way you could implement the SummaryUITableViewCell
.
SummaryTableViewCell.h
#import <UIKit/UIKit.h>
@interface SummaryTableViewCell : UITableViewCell <UIWebViewDelegate>
@end
SummaryTableViewCell.m
#import "SummaryTableViewCell.h"
@interface SummaryTableViewCell ()
// Keep references to our spinner and webview here
@property (nonatomic, strong) UIActivityIndicatorView *spinner;
@property (nonatomic, strong) UIWebView *webView;
@end
@implementation SummaryTableViewCell
- (instancetype)initWithUrl:(NSString *)url
self = [super init];
if (self)
[self setup:url];
return self;
- (void)setup:(NSString *)url
// Add Webview
self.webView = [[UIWebView alloc] initWithFrame:[self frame]];
[self.webView loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:url]]];
[self.webView setAlpha:0];
// Set the cell as the delegate of the webview
[self.webView setDelegate:self];
[self addSubview:self.webView];
// Add Spinner
self.spinner = [[UIActivityIndicatorView alloc] init];
[self addSubview:self.spinner];
- (void)webViewDidFinishLoad:(UIWebView *)webView
// The web view loaded the url so we can now hide the spinner and show the web view
[self.spinner setAlpha:0];
[self.webView setAlpha:1];
@end
1
Thanks, this is basically how I did it, except only one[super init]
(I presume that was a typo) and the webVirew allocation etc. are in the table view controller, with the webView delegate set to cell
– Ben Holness
Nov 13 '18 at 15:55
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%2f53271286%2fhow-do-i-find-an-activity-indicator-in-a-uitableviewcell-on-completion-of-multip%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
You want each of your SummaryUITableViewCell
to implement UIWebViewDelegate
and handle the webViewDidFinishLoad
call themselves. Then you can easily hide the spinners each time the UIWebView
loads. Here is one way you could implement the SummaryUITableViewCell
.
SummaryTableViewCell.h
#import <UIKit/UIKit.h>
@interface SummaryTableViewCell : UITableViewCell <UIWebViewDelegate>
@end
SummaryTableViewCell.m
#import "SummaryTableViewCell.h"
@interface SummaryTableViewCell ()
// Keep references to our spinner and webview here
@property (nonatomic, strong) UIActivityIndicatorView *spinner;
@property (nonatomic, strong) UIWebView *webView;
@end
@implementation SummaryTableViewCell
- (instancetype)initWithUrl:(NSString *)url
self = [super init];
if (self)
[self setup:url];
return self;
- (void)setup:(NSString *)url
// Add Webview
self.webView = [[UIWebView alloc] initWithFrame:[self frame]];
[self.webView loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:url]]];
[self.webView setAlpha:0];
// Set the cell as the delegate of the webview
[self.webView setDelegate:self];
[self addSubview:self.webView];
// Add Spinner
self.spinner = [[UIActivityIndicatorView alloc] init];
[self addSubview:self.spinner];
- (void)webViewDidFinishLoad:(UIWebView *)webView
// The web view loaded the url so we can now hide the spinner and show the web view
[self.spinner setAlpha:0];
[self.webView setAlpha:1];
@end
1
Thanks, this is basically how I did it, except only one[super init]
(I presume that was a typo) and the webVirew allocation etc. are in the table view controller, with the webView delegate set to cell
– Ben Holness
Nov 13 '18 at 15:55
add a comment |
You want each of your SummaryUITableViewCell
to implement UIWebViewDelegate
and handle the webViewDidFinishLoad
call themselves. Then you can easily hide the spinners each time the UIWebView
loads. Here is one way you could implement the SummaryUITableViewCell
.
SummaryTableViewCell.h
#import <UIKit/UIKit.h>
@interface SummaryTableViewCell : UITableViewCell <UIWebViewDelegate>
@end
SummaryTableViewCell.m
#import "SummaryTableViewCell.h"
@interface SummaryTableViewCell ()
// Keep references to our spinner and webview here
@property (nonatomic, strong) UIActivityIndicatorView *spinner;
@property (nonatomic, strong) UIWebView *webView;
@end
@implementation SummaryTableViewCell
- (instancetype)initWithUrl:(NSString *)url
self = [super init];
if (self)
[self setup:url];
return self;
- (void)setup:(NSString *)url
// Add Webview
self.webView = [[UIWebView alloc] initWithFrame:[self frame]];
[self.webView loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:url]]];
[self.webView setAlpha:0];
// Set the cell as the delegate of the webview
[self.webView setDelegate:self];
[self addSubview:self.webView];
// Add Spinner
self.spinner = [[UIActivityIndicatorView alloc] init];
[self addSubview:self.spinner];
- (void)webViewDidFinishLoad:(UIWebView *)webView
// The web view loaded the url so we can now hide the spinner and show the web view
[self.spinner setAlpha:0];
[self.webView setAlpha:1];
@end
1
Thanks, this is basically how I did it, except only one[super init]
(I presume that was a typo) and the webVirew allocation etc. are in the table view controller, with the webView delegate set to cell
– Ben Holness
Nov 13 '18 at 15:55
add a comment |
You want each of your SummaryUITableViewCell
to implement UIWebViewDelegate
and handle the webViewDidFinishLoad
call themselves. Then you can easily hide the spinners each time the UIWebView
loads. Here is one way you could implement the SummaryUITableViewCell
.
SummaryTableViewCell.h
#import <UIKit/UIKit.h>
@interface SummaryTableViewCell : UITableViewCell <UIWebViewDelegate>
@end
SummaryTableViewCell.m
#import "SummaryTableViewCell.h"
@interface SummaryTableViewCell ()
// Keep references to our spinner and webview here
@property (nonatomic, strong) UIActivityIndicatorView *spinner;
@property (nonatomic, strong) UIWebView *webView;
@end
@implementation SummaryTableViewCell
- (instancetype)initWithUrl:(NSString *)url
self = [super init];
if (self)
[self setup:url];
return self;
- (void)setup:(NSString *)url
// Add Webview
self.webView = [[UIWebView alloc] initWithFrame:[self frame]];
[self.webView loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:url]]];
[self.webView setAlpha:0];
// Set the cell as the delegate of the webview
[self.webView setDelegate:self];
[self addSubview:self.webView];
// Add Spinner
self.spinner = [[UIActivityIndicatorView alloc] init];
[self addSubview:self.spinner];
- (void)webViewDidFinishLoad:(UIWebView *)webView
// The web view loaded the url so we can now hide the spinner and show the web view
[self.spinner setAlpha:0];
[self.webView setAlpha:1];
@end
You want each of your SummaryUITableViewCell
to implement UIWebViewDelegate
and handle the webViewDidFinishLoad
call themselves. Then you can easily hide the spinners each time the UIWebView
loads. Here is one way you could implement the SummaryUITableViewCell
.
SummaryTableViewCell.h
#import <UIKit/UIKit.h>
@interface SummaryTableViewCell : UITableViewCell <UIWebViewDelegate>
@end
SummaryTableViewCell.m
#import "SummaryTableViewCell.h"
@interface SummaryTableViewCell ()
// Keep references to our spinner and webview here
@property (nonatomic, strong) UIActivityIndicatorView *spinner;
@property (nonatomic, strong) UIWebView *webView;
@end
@implementation SummaryTableViewCell
- (instancetype)initWithUrl:(NSString *)url
self = [super init];
if (self)
[self setup:url];
return self;
- (void)setup:(NSString *)url
// Add Webview
self.webView = [[UIWebView alloc] initWithFrame:[self frame]];
[self.webView loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:url]]];
[self.webView setAlpha:0];
// Set the cell as the delegate of the webview
[self.webView setDelegate:self];
[self addSubview:self.webView];
// Add Spinner
self.spinner = [[UIActivityIndicatorView alloc] init];
[self addSubview:self.spinner];
- (void)webViewDidFinishLoad:(UIWebView *)webView
// The web view loaded the url so we can now hide the spinner and show the web view
[self.spinner setAlpha:0];
[self.webView setAlpha:1];
@end
edited Nov 13 '18 at 16:40
answered Nov 12 '18 at 23:22
Allen RAllen R
826517
826517
1
Thanks, this is basically how I did it, except only one[super init]
(I presume that was a typo) and the webVirew allocation etc. are in the table view controller, with the webView delegate set to cell
– Ben Holness
Nov 13 '18 at 15:55
add a comment |
1
Thanks, this is basically how I did it, except only one[super init]
(I presume that was a typo) and the webVirew allocation etc. are in the table view controller, with the webView delegate set to cell
– Ben Holness
Nov 13 '18 at 15:55
1
1
Thanks, this is basically how I did it, except only one
[super init]
(I presume that was a typo) and the webVirew allocation etc. are in the table view controller, with the webView delegate set to cell– Ben Holness
Nov 13 '18 at 15:55
Thanks, this is basically how I did it, except only one
[super init]
(I presume that was a typo) and the webVirew allocation etc. are in the table view controller, with the webView delegate set to cell– Ben Holness
Nov 13 '18 at 15:55
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%2f53271286%2fhow-do-i-find-an-activity-indicator-in-a-uitableviewcell-on-completion-of-multip%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
Each cell should be its own web view delegate, then it can simply stop its own loading spinner
– Paulw11
Nov 12 '18 at 23:06