3

我正在尝试将 bluemix 推送服务集成到我的 Cordova 应用程序中。使用以下链接中的示例:

https://github.com/ibm-bluemix-mobile-services/bms-samples-cordova-hellopush

当我在 iOS 上遵循该过程并尝试构建应用程序时,它在框架中的 IMFClient 上给了我以下错误。

更新:

在此处输入图像描述

4

3 回答 3

0

如果示例中未正确配置 Bridging-Header.h 文件,您将看到该错误。

请参阅https://github.com/ibm-bluemix-mobile-services/bms-clientsdk-cordova-plugin-push/#configuration

在 AppDelegate.m 的顶部:

#import "[your-project-name]-Swift.h"

如果您的项目名称包含空格或连字符,请在导入语句中将它们替换为下划线。

然后从https://github.com/ibm-bluemix-mobile-services/bms-clientsdk-cordova-plugin-core#4configuring-your-platform

添加桥接头。转到 Build settings > Swift Compiler - Code Generation > Objective-C Bridging Header 并添加以下路径:

[your-project-name]/Plugins/ibm-mfp-core/Bridging-Header.h

希望这可以帮助。

于 2016-08-16T15:50:34.623 回答
0

这也可能有帮助:在上一个问题中,我编写了设置 Cordova 和 iOS 的步骤。

请记住,您还必须禁用位码。

无法运行 bms-samples-cordova-hellopush - 找不到 bms_samples_cordova_push-Swift.h 文件


我能够bms-samples-cordova-hellopush使用以下步骤运行示例应用程序:

  1. 克隆样本:

    git clone https://github.com/ibm-bluemix-mobile-services/bms-samples-cordova-hellopush

  2. 在我的(在 Bluemix 上为我的 Mobile Services Starter 应用程序配置推送通知之后)添加了我的APPLICATION_ROUTEAPPLICATION_GUID[your-directory]/www/js/index.js

  3. 将 iOS 平台添加到我的应用程序中:

    cordova platform add ios@3.9

  4. 添加了 Cordova 插件:

    cordova plugin add ibm-mfp-push

  5. 使用 Xcode 在我的目录中打开我的[your-app-name].xcodeproj文件(当我被提示: Convert to Latest Swift Syntax时,我点击了Cancel[your-app-name]/platforms/ios

  6. 添加了桥接头。去Build settings > Swift Compiler - Code Generation > Objective-C Bridging Header并添加了以下路径:

    [your-project-name]/Plugins/ibm-mfp-core/Bridging-Header.h

桥接头

  1. 添加框架参数。转到Build Settings > Linking > Runpath Search Paths并添加以下参数:

    @executable_path/Frameworks

可执行路径

  1. 建成项目

  2. 在我的桥接头中取消注释以下 Push import 语句。去了[your-project-name]/Plugins/ibm-mfp-core/Bridging-Header.h

桥接头

  1. 更新了我的客户端应用程序以使用 Push SDK

这是我的更新AppDelegate.m

/*
 Licensed to the Apache Software Foundation (ASF) under one
 or more contributor license agreements.  See the NOTICE file
 distributed with this work for additional information
 regarding copyright ownership.  The ASF licenses this file
 to you under the Apache License, Version 2.0 (the
 "License"); you may not use this file except in compliance
 with the License.  You may obtain a copy of the License at

 http://www.apache.org/licenses/LICENSE-2.0

 Unless required by applicable law or agreed to in writing,
 software distributed under the License is distributed on an
 "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 KIND, either express or implied.  See the License for the
 specific language governing permissions and limitations
 under the License.
 */

//
//  AppDelegate.m
//  bms-samples-cordova-push
//
//  Created by ___FULLUSERNAME___ on ___DATE___.
//  Copyright ___ORGANIZATIONNAME___ ___YEAR___. All rights reserved.
//

#import "AppDelegate.h"
#import "MainViewController.h"
#import "bms_samples_cordova_push-Swift.h"


#import <Cordova/CDVPlugin.h>

@implementation AppDelegate

@synthesize window, viewController;

- (id)init
{
    /** If you need to do any extra app-specific initialization, you can do it here
     *  -jm
     **/
    NSHTTPCookieStorage* cookieStorage = [NSHTTPCookieStorage sharedHTTPCookieStorage];

    [cookieStorage setCookieAcceptPolicy:NSHTTPCookieAcceptPolicyAlways];

    int cacheSizeMemory = 8 * 1024 * 1024; // 8MB
    int cacheSizeDisk = 32 * 1024 * 1024; // 32MB
#if __has_feature(objc_arc)
        NSURLCache* sharedCache = [[NSURLCache alloc] initWithMemoryCapacity:cacheSizeMemory diskCapacity:cacheSizeDisk diskPath:@"nsurlcache"];
#else
        NSURLCache* sharedCache = [[[NSURLCache alloc] initWithMemoryCapacity:cacheSizeMemory diskCapacity:cacheSizeDisk diskPath:@"nsurlcache"] autorelease];
#endif
    [NSURLCache setSharedURLCache:sharedCache];

    self = [super init];
    return self;
}

#pragma mark UIApplicationDelegate implementation

/**
 * This is main kick off after the app inits, the views and Settings are setup here. (preferred - iOS4 and up)
 */
- (BOOL)application:(UIApplication*)application didFinishLaunchingWithOptions:(NSDictionary*)launchOptions
{
    CGRect screenBounds = [[UIScreen mainScreen] bounds];

#if __has_feature(objc_arc)
        self.window = [[UIWindow alloc] initWithFrame:screenBounds];
#else
        self.window = [[[UIWindow alloc] initWithFrame:screenBounds] autorelease];
#endif
    self.window.autoresizesSubviews = YES;

#if __has_feature(objc_arc)
        self.viewController = [[MainViewController alloc] init];
#else
        self.viewController = [[[MainViewController alloc] init] autorelease];
#endif

    // Set your app's start page by setting the <content src='foo.html' /> tag in config.xml.
    // If necessary, uncomment the line below to override it.
    // self.viewController.startPage = @"index.html";

    // NOTE: To customize the view's frame size (which defaults to full screen), override
    // [self.viewController viewWillAppear:] in your view controller.

    [[CDVMFPPush sharedInstance] didReceiveRemoteNotificationOnLaunch:launchOptions];

    self.window.rootViewController = self.viewController;
    [self.window makeKeyAndVisible];

    return YES;
}

// this happens while we are running ( in the background, or from within our own app )
// only valid if bms-samples-cordova-push-Info.plist specifies a protocol to handle
- (BOOL)application:(UIApplication*)application openURL:(NSURL*)url sourceApplication:(NSString*)sourceApplication annotation:(id)annotation
{
    if (!url) {
        return NO;
    }

    // all plugins will get the notification, and their handlers will be called
    [[NSNotificationCenter defaultCenter] postNotification:[NSNotification notificationWithName:CDVPluginHandleOpenURLNotification object:url]];

    return YES;
}

// repost all remote and local notification using the default NSNotificationCenter so multiple plugins may respond
- (void)            application:(UIApplication*)application
    didReceiveLocalNotification:(UILocalNotification*)notification
{
    // re-post ( broadcast )
    [[NSNotificationCenter defaultCenter] postNotificationName:CDVLocalNotification object:notification];
}


#if __IPHONE_OS_VERSION_MAX_ALLOWED < 90000
- (NSUInteger)application:(UIApplication*)application supportedInterfaceOrientationsForWindow:(UIWindow*)window
#else
- (UIInterfaceOrientationMask)application:(UIApplication*)application supportedInterfaceOrientationsForWindow:(UIWindow*)window
#endif
{
    // iPhone doesn't support upside down by default, while the iPad does.  Override to allow all orientations always, and let the root view controller decide what's allowed (the supported orientations mask gets intersected).
    NSUInteger supportedInterfaceOrientations = (1 << UIInterfaceOrientationPortrait) | (1 << UIInterfaceOrientationLandscapeLeft) | (1 << UIInterfaceOrientationLandscapeRight) | (1 << UIInterfaceOrientationPortraitUpsideDown);

    return supportedInterfaceOrientations;
}

- (void)applicationDidReceiveMemoryWarning:(UIApplication*)application
{
    [[NSURLCache sharedURLCache] removeAllCachedResponses];
}

// Register device token with Bluemix Push Notification Service
- (void)application:(UIApplication *)application
didRegisterForRemoteNotificationsWithDeviceToken:(NSData *)deviceToken{
    
    [[CDVMFPPush sharedInstance] didRegisterForRemoteNotifications:deviceToken];
}

// Handle error when failed to register device token with APNs
- (void)application:(UIApplication*)application
didFailToRegisterForRemoteNotificationsWithError:(NSError*)error {
    
    [[CDVMFPPush sharedInstance] didFailToRegisterForRemoteNotifications:error];
}

// Handle receiving a remote notification
-(void)application:(UIApplication *)application
didReceiveRemoteNotification:(NSDictionary *)userInfo
fetchCompletionHandler:(void (^)(UIBackgroundFetchResult))completionHandler {
    
    [[CDVMFPPush sharedInstance] didReceiveRemoteNotification:userInfo];
}

@end
  1. 在 iOS 设备上运行示例以实际注册和接收推送通知
于 2016-08-16T15:56:49.580 回答
0

当应用程序在模拟器上运行时,似乎存在架构构建问题。

当应用程序直接在设备上运行时,我能够构建和运行应用程序。:-)

于 2016-09-07T13:39:42.417 回答