目前我正在为iOS 7更新我的应用程序.当我构建并运行应用程序时,它可以工作,但布局需要一些严肃的调整,这不是问题.
当我导航到应用程序中的另一个视图时,屏幕被推动约50%然后消失.附图描述了问题:

应用程序使用a storyboard,而storyboardsegue只是导航控制器中的一个简单的"推送"segue.
我有一个Android ListView,它包含一个点击时需要检查的按钮.click事件似乎正在起作用:
public View getView(final int position, View convertView, ViewGroup parent) {
final ViewHolder holder;
LayoutInflater inflater = this._context.getLayoutInflater();
if (convertView == null) {
convertView = inflater.inflate(R.layout.checkbox_cell, null);
holder = new ViewHolder();
holder.checkbox = (CheckBox) convertView.findViewById(R.id.button);
holder.textView = (TextView) convertView.findViewById(R.id.textView);
convertView.setTag(holder);
} else {
holder = (ViewHolder) convertView.getTag();
}
if(holder.checkbox.isChecked()) {
convertView.setBackgroundColor(Color.RED);
holder.textView.setBackgroundColor(Color.RED);
convertView.invalidate();
} else {
convertView.setBackgroundColor(Color.GREEN);
}
holder.checkbox.setOnClickListener(new View.OnClickListener() {
public void onClick(View v) {
Arrays.sort(_context.checkBoxIds);
int index = Arrays.binarySearch(_context.checkBoxIds, position);
if (((CheckBox) v).isChecked()) {
holder.textView.setPaintFlags(holder.textView.getPaintFlags() | Paint.STRIKE_THRU_TEXT_FLAG); …Run Code Online (Sandbox Code Playgroud) 我开发了Cordova /离子通用Windows应用程序.一切都在模拟器和真实设备的调试模式下完美运行.在我发布版本(存储 - >创建应用程序包...)并启动发布版本或启动新的调试会话后,应用程序在启动屏幕消失后启动"about:blank"页面.我必须再次运行"离子构建窗口"来查看我的应用程序.我希望有人熟悉这个问题,它让我疯狂!
Cordova CLI:6.0.0 Ionic版本:1.2.4 Ionic CLI版本:1.7.14 Ionic app lib版本:0.7.0
android ×1
cordova ×1
ios ×1
ios7 ×1
iphone ×1
listview ×1
objective-c ×1
storyboard ×1
windows ×1