Hi all,
In Backendless-ios-SDK (3.0.39), there is a problem of “Implicit declaration of function’ notify_register_dispatch 'is invalid in C99”
In Backendless-ios-SDK(3.0.38) there was no problem.
Did you change something in this version?
Do I have something to do?
code:
#import "ViewController.h"
#include <notify.h>
#include <notify_keys.h>
@interface ViewController ()
@end
@implementation ViewController
- (void)viewDidLoad {
[super viewDidLoad];
int notifyToken = 0;
notify_register_dispatch(kNotifyASLDBUpdate, ¬ifyToken, dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_HIGH, 0), ^(int token)
{
});
}
@end
Thanks.