我有一个cButton.setOnClickListener(new View.OnClickListener() {
public void onClick(View v) {
String currentText = textView.getText().toString();
if(currentText.length >= 2){
currentText = currentText.substring(0, currentText.length - 2);
}else{
currentText = "";
}
textView.setText(currentText);
}
});
cButton.setOnLongClickListener(new View.OnLongClickListener() {
@Override
public boolean onLongClick(View v) {
textView.setText("");
return true;
}
});
与我的应用程序绑定。对于share-extension
和app-ids
,我都有与扩展程序相关的所有必需provisioning-profiles
和development
。当我在distribution
中运行扩展程序时,它完全正常。例如,在simulator
(即iPhone 6)上,在device
内选择我的应用share extension
时,Safari
会冻结并且不会打开任何内容。我甚至无法调试它,不是因为我不知道该怎么做,而是因为它在Safari
之后运行并立即停止运行。
我认为Xcode
或provisioning-profiles
可能存在问题,或者在发布之前可能存在错误或缺少的功能。由app-ids
引起。
如果有人对此有任何解决方案或解释,我将非常感激。
修改
我在Apple
上更改了扩展程序视图的background-color
,看它是否根本不起作用。它确实打开了,但storyboard
没有出现。因此,问题必定是由它造成的。