使用 IOS 静态库问题创建 NativeScript 插件
Create NativeScript Plugin using IOS Static Library issue
我已经创建了 .a 静态库(在 Xcode 中针对原生 ios 项目进行了测试并且工作正常)
现在我正在按照这个 https://github.com/NativeScript/nativescript-plugin-seed 使用 .a 静态框架创建 nativescript 插件。
插件结构
module.modulemap 文件是我创建的,它看起来像这样
module libstaticlibrary {
umbrella header "staticlibrary.h"
export *
}
staticlibrary.h
#import <Foundation/Foundation.h>
@interface staticlibrary : NSObject
+ (NSString *)sayHello;
@end
libstaticlibrary.d.ts也是我创建的
declare class staticlibrary extends NSObject {
static sayHello():string;
}
然后在 helloplugin.common.ts 我试图访问 staticlibrary.sayHello() 方法。
export class Utils {
public static SUCCESS_MSG(): string {
// let msg = `Your plugin is working on ${app.android ? 'Android' : 'iOS'}.`;
let msg = staticlibrary.sayHello();
setTimeout(() => {
dialogs.alert(`${msg} For real. It's really working :)`).then(() => console.log(`Dialog closed.`));
}, 2000);
return msg;
}
我遇到以下错误。
node_modules/nativescript-helloplugin/helloplugin.common.ts(21,15): error TS2304: Cannot find name 'staticlibrary'.
我哪里做错了?
这只是 TypeScript 编译器错误,您必须为您的静态库生成类型(请参阅 docs 了解如何操作)或只需将此行添加到您的文件顶部。
declare var staticlibrary: any
我看到你的代码片段中确实有一个声明文件,如果你想使用它,你必须将它包含到你的 references.d.ts
文件中。
我已经创建了 .a 静态库(在 Xcode 中针对原生 ios 项目进行了测试并且工作正常) 现在我正在按照这个 https://github.com/NativeScript/nativescript-plugin-seed 使用 .a 静态框架创建 nativescript 插件。
插件结构
module.modulemap 文件是我创建的,它看起来像这样
module libstaticlibrary {
umbrella header "staticlibrary.h"
export *
}
staticlibrary.h
#import <Foundation/Foundation.h>
@interface staticlibrary : NSObject
+ (NSString *)sayHello;
@end
libstaticlibrary.d.ts也是我创建的
declare class staticlibrary extends NSObject {
static sayHello():string;
}
然后在 helloplugin.common.ts 我试图访问 staticlibrary.sayHello() 方法。
export class Utils {
public static SUCCESS_MSG(): string {
// let msg = `Your plugin is working on ${app.android ? 'Android' : 'iOS'}.`;
let msg = staticlibrary.sayHello();
setTimeout(() => {
dialogs.alert(`${msg} For real. It's really working :)`).then(() => console.log(`Dialog closed.`));
}, 2000);
return msg;
}
我遇到以下错误。
node_modules/nativescript-helloplugin/helloplugin.common.ts(21,15): error TS2304: Cannot find name 'staticlibrary'.
我哪里做错了?
这只是 TypeScript 编译器错误,您必须为您的静态库生成类型(请参阅 docs 了解如何操作)或只需将此行添加到您的文件顶部。
declare var staticlibrary: any
我看到你的代码片段中确实有一个声明文件,如果你想使用它,你必须将它包含到你的 references.d.ts
文件中。