Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
654 views
in Technique[技术] by (71.8m points)

objective c - applicationWillEnterForeground: reload Data from ViewController

I want my app to reload data as soon as the app switches from the background to the foreground.

Thats my code:

DataAppDelegate.h

#import <UIKit/UIKit.h>
#import "DataViewController.h"


@class DataViewController;

@interface DataAppDelegate : NSObject <UIApplicationDelegate> {
    UIWindow *window;
    DataViewController *viewController;
}

@property (nonatomic, retain) IBOutlet UIWindow *window;
@property (nonatomic, retain) IBOutlet DataViewController *viewController;


@end

AppDelegate.m

#import "DataAppDelegate.h"
#import "DataViewController.h"


@implementation DataAppDelegate

@synthesize window;
@synthesize viewController;


#pragma mark -
#pragma mark Application lifecycle

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {    

    // Override point for customization after application launch.

    // Add the view controller's view to the window and display.
    [self.window addSubview:viewController.view];
    [self.window makeKeyAndVisible];

    return YES;
}


- (void)applicationWillResignActive:(UIApplication *)application {
    NSLog(@"app will resign active");
}


- (void)applicationDidEnterBackground:(UIApplication *)application {
    NSLog(@"app did enter background");
    [DataViewController refresh];
}

- (void)applicationWillEnterForeground:(UIApplication *)application {
    NSLog(@"app will enter foreground");
    [DataViewController refresh];
}

DataViewController.h

    @interface DataViewController : UIViewController<UIWebViewDelegate, ADBannerViewDelegate> {
    IBOutlet UIWebView *webView;
    IBOutlet UITextField *addressBar;
    IBOutlet UIActivityIndicatorView *activityIndicator;
    IBOutlet UILabel *myField2;
    IBOutlet UILabel *myField3;
    IBOutlet UILabel *myField4;
    IBOutlet UILabel *myField5;
    IBOutlet UILabel *myField6;
    ADBannerView *adView;
    BOOL bannerIsVisible;
}



@property(nonatomic,retain) UIWebView *webView;
@property(nonatomic,retain) UITextField *addressBar;
@property(nonatomic,retain) UIActivityIndicatorView *activityIndicator;
@property(nonatomic,assign) BOOL bannerIsVisible;


-(IBAction) goBack:(id)sender;
-(IBAction) goForward:(id)sender;
-(IBAction) refresh:(id)sender;
-(IBAction) goImpressum:(id)sender;

@end

DataViewController.m

- (void) viewDidLoad  {
    [self loadData];

}
- (void)loadData {
// contains information the ViewController makes use of
}

-(IBAction)refresh:(id) sender {
    [self loadData];
    }

With that code i get two warnings:

'DataViewController' may not respond to '+refresh'

but it does work.

If i cut the line in method "applicationDidEnterBackground:" it doesn't work anymore, the app crashes. Why? How do i have to fill the applicationDidEnterBackground: method? DO i need to book some space for my application? how do I do that?

How am I able to solve these warnings? Appearently my application does not know the refresh method, but why does it work in my example above?

Thanks in advance for your help :)

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

Change

    - (void)applicationWillEnterForeground:(UIApplication *)application {
    NSLog(@"app will enter foreground");
    [DataViewController refresh];
}

to

- (void)applicationWillEnterForeground:(UIApplication *)application {
    NSLog(@"app will enter foreground");
    [viewController refresh:NULL];
}

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...