运行此命令后,终端表示构建成功,
SpannableString span= new SpannableString("Find more information "+here"");
ClickableSpan clickableSpan = new ClickableSpan() {
@Override
public void onClick(View textView) {
// Perform action here
}
@Override
public void updateDrawState(TextPaint ds) {
super.updateDrawState(ds);
ds.setUnderlineText(false);
}
};
span.setSpan(clickableSpan, 23, 26, Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);
textView.setText(span);
textView.setMovementMethod(LinkMovementMethod.getInstance());
我可以在设备中传输内置版本吗?怎么安装呢? 我是ios的新手......
答案 0 :(得分:0)
你有没有尝试过:
ionic cordova run ios --debug
参考离子https://ionicframework.com/docs/cli/cordova/run/
的文件无论如何,如果这没有帮助,只需从您构建的构建中打开Xcode项目,并在Xcode中运行debug。
如果您的意思是将其部署到Apple商店,那么您需要查看:https://ionicframework.com/docs/intro/deploying/#ios-devices