UTS iOS插件

1、UTS插件无法出现

再uniapp x中使用时,必须给这个插件高度和宽度,否则出不来!

swift 复制代码
<uts-hello-view buttonText="点击按钮内容" style="width:375px;height: 375px;background-color: aqua;"></uts-hello-view>

2、无法运行

检查是否都已经Podfile文件中版本修改为12

问题:Sandbox: bash(72928) deny(1) file-write-create

方法:build settings->User Script Sandboxing 修改为NO

3、使用第三方库时,不能在.h文件中导入这个内容第三方库 !!!

4、swift 如果类添加了public前缀,那么无法添加协议MAMapViewDelegate,会报错!!!

5、如何在uts插件中调用swift的方法

首先,swift必须是public 或者open修饰,比如 public class NHT_DemoView

但是高德地图又不能用这个修饰,所以将高德地图添加到一个view上,然后将这个view添加到另一个通过

public修饰的类上,通过这个类调用高德地图的api;

6、如何在UTS插件中使用swift的闭包

swift:

@objc open var SelectLocationChangeBlock: (([String:Any])->Void)?

UTS插件:

swift 复制代码
NVLoad() : NHT_DemoView {
			// -----NHT_AMAPView
			let button = new NHT_DemoView()
			button.SelectLocationChangeBlock = (res : any) => {
				this.$emit('fetchgis', res)
			};
	return button
		},

this.$emit传值报错,error: cannot convert value of type 'String' to expected argument type '[String : Any]?'

因为传值类型不对,可以自己声明一个变量,然后当参数传值

swift 复制代码
const map1 = new Map<string,any>()
			map1.set('a', 'alpha');

或者改变响应回调的写法(必须按照你实际的返回内容),

swift 复制代码
button.SelectLocationChangeBlock = (res : Map<string, any>) => {
				this.$emit('fetchgis', res)
			};

7、不能全用self.bounds,有可能出不来啊!!!!

需要直接写死frame,或者使用约束;

8、error: uni_modules/nhyt-texs/utssdk/app-ios/src/index.swift:61:9: error: contextual closure type '(Any, Any) -> Void' expects 2 arguments, but 1 was used in closure body

可能是watch中出现的问题

比如监听下面的值

"enableLocation": {//允许定位

type: Boolean,

default: false

},

watch: {

//这样写对,必须有newValue : boolean, oldVel : boolean,只有newValue会报这个错误

"enableLocation": {

handler(newValue : boolean, oldVel : boolean) {

// if (!this.isInitLocation && newValue && !this.innerEnableLocation) {

// this.isInitLocation = true

// this.innerEnableLocation = newValue

// this.initLocation()

// }

},

immediate: false

},

}

9、emit

只能全部小写,有大写的不行,比如下面fetchGis就不行,而fetchgis可以

emits: ['fetchGis', "locate", "hhhh", "fetchgis"],

相关推荐
TheNextByte13 小时前
如何通过 4 种简单方法克隆 iPhone
ios·iphone
2501_916007473 小时前
iOS 证书如何创建,从能生成到能长期使用
android·macos·ios·小程序·uni-app·cocoa·iphone
2501_915106327 小时前
iOS App 测试方法,通过 Xcode、Instruments、Safari Inspector、克魔(KeyMob)等工具
android·ios·小程序·uni-app·iphone·xcode·safari
游戏开发爱好者87 小时前
对 iOS IPA 文件进行深度混淆的一种实现路径
android·ios·小程序·https·uni-app·iphone·webview
JZXStudio7 小时前
Swift 6 + MLX + SwiftUI:三位一体本地AI架构蓝图
前端·ios
TheNextByte18 小时前
如何将视频从 iPhone 发送到 Redmi
ios·iphone
2501_916007479 小时前
Xcode 在 iOS 上架中的定位,多工具组合
android·macos·ios·小程序·uni-app·iphone·xcode
游戏开发爱好者89 小时前
uni-app 项目在 iOS 上架过程中常见的问题与应对方式
android·ios·小程序·https·uni-app·iphone·webview
__WanG9 小时前
screen time api - FamilyActivityPicker 获取选中应用
ios·iphone·swift
2501_915106329 小时前
iOS 抓包工具在不同场景的实际作用
android·macos·ios·小程序·uni-app·cocoa·iphone