Tag: ios7

在iOS 7.0.3中不能使用<form target =“_ blank”>

以下代码在iOS 6.0.1中完美运行(使用iOS虚拟键盘,我在input框上按下“Go”button) <html> <body> <form action="http://stackoverflow.com/" target="_blank"> <input type="text" /> </form> </body> </html> 但是当我在iOS 7.0.3上尝试完全相同的代码时,这根本不起作用。 按下iOS键盘上的“Go”button后没有任何反应。 如果我从表单标签中删除[target =“_ blank”],那么它工作正常。 我不知道这个问题的原因是什么。 有没有人有同样的问题?

iOS 7中的静音推送通知是否有速率限制?

我看到一个提到对无声推送通知的限制:“无声推送是速率有限的,每小时less量” (来自WWDC 2013: http : //devstreaming.apple.com/videos/wwdc/2013/204xex2xvpdncz9kdb17lmfooh/204/204.pdf ) 我还没有在其他地方看到这个logging,在我们的实验中,我们没有看到任何这样的限制。 有谁知道这是我们需要考虑的事情吗? 对常规APN的所有描述似乎意味着没有限制,虽然不一定实时收到,但最终应该交付。 我们正在考虑每个设备每分钟使用一次静默通知,因此不要每隔几秒钟敲击设备一次,肯定会超过每小时几次。

cordova3.1.0:找不到插件或不是CDVPlugin

我试图build立我的第一个cordova应用程序,我不能得到一个插件工作。 我的应用程序是使用Cordova命令行界面构build的,所以我已经用这种方式添加了Camera插件: cordova plugin add https://git-wip-us.apache.org/repos/asf/cordova-plugin-camera.git 我的config.xml如下所示: <?xml version='1.0' encoding='utf-8'?> <widget id="com.dev.myapp" version="0.0.1" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0"> <name>My App</name> <description> A sample Apache Cordova application </description> <author email="dev@callback.apache.org" href="http://cordova.io"> Apache Cordova Team </author> <content src="index.html" /> <access origin="*" /> <preference name="fullscreen" value="true" /> <preference name="webviewbounce" value="true" /> <feature name="Camera"> <param name="ios-package" value="CDVCamera" /> </feature> </widget> 我已经运行cordova build […]

如何在iOS 7上以兼容模式debugging应用程序?

所以iOS 7发布了,我们很多用户已经升级了,尽pipe我们正式不支持iOS 7并且要求大家不要升级。 目前,该应用程序运行在兼容模式,并有很多问题被我们的用户报告。 问题是我不知道如何在兼容模式下进行debugging,所以这些问题中的一部分确实很难解决。 我试图Google,但迄今为止我没有运气。 如何在兼容模式下debuggingiOS 7上的应用程序?

ios – 简单的例子来获取相册列表?

我试图从这里获得设备中可用的相册列表: 到目前为止,我在我的viewDidLoad中有这个: // Get albums NSMutableArray *groups = [NSMutableArray new]; ALAssetsLibrary *library = [ALAssetsLibrary new]; ALAssetsLibraryGroupsEnumerationResultsBlock listGroupBlock = ^(ALAssetsGroup *group, BOOL *stop) { if (group) { [groups addObject:group]; } }; NSUInteger groupTypes = ALAssetsGroupAlbum; [library enumerateGroupsWithTypes:groupTypes usingBlock:listGroupBlock failureBlock:nil]; NSLog(@"%@", groups); 但是,没有添加到组数组。 我期待从NSLog看到2项。

在iOS 7中锁屏播放器的search栏问题

如果我通过iOS 7的iPhone原生音乐播放器播放音乐并在locking屏幕上访问音乐,则可以拖动播放器的search栏,即用户可以与其进行交互。 截图: 但是,如果我从支持后台audio播放的应用播放音乐,则在locking屏幕上禁止播放器的search栏用户交互。 我无法移动它。 截图: 我搜查了苹果的文档,但没有find任何与此相关的内容。 我的问题是,iOS允许第三方应用程序与本地音乐应用程序在locking屏幕上与玩家的search栏进行交互,还是必须在我的代码中添加一些设置?

重新定位/调整UIBezierPath的大小

我有一个可拖动的视图,其上有一个遮罩层。 遮罩层上有一个UIBezierPath,它使视图上的区域透明/透明(我想要的效果)。 我的最终目标是通过传递一个基于我的视图和另一个矩形(基本上我想隐藏相交的区域)的交点计算出来的CGRect来改变path的位置和大小(而不是掩模层!)。 1)我如何创build我的面具和path(在我的视图上创build一个透明的矩形): self.maskLayer = [CAShapeLayer layer]; self.maskLayer.frame = self.contentView.bounds; //default path rect CGRect const rect = CGRectMake(CGRectGetMidX(self.contentView.bounds) , CGRectGetMidY(self.contentView.bounds), 50,50); path = [UIBezierPath bezierPathWithRect:rect]; [path appendPath:[UIBezierPath bezierPathWithRect:self.contentView.frame]]; self.maskLayer.path = path.CGPath; self.maskLayer.fillRule = kCAFillRuleEvenOdd; self.contentView.layer.mask = self.maskLayer; 2)我的问题是,我找不到调整path大小/重新定位的方法。 我在网上search,但找不到任何解决scheme。 这个代码不起作用,但是我能想到的是: //runs while the view is being dragged(using UIPanGestureRecognizer) -(void)move{ CGRect intersectedRect = CGRectIntersection(self.frame, self.productView.frame); […]

iOS 7 beginUpdates endUpdates不一致

编辑 :这个答案的解决scheme是有关iOS7有时返回NSIndexPath和其他时间返回NSMutableIndexPath 。 这个问题与begin/endUpdates没有什么关系,但希望解决scheme能够帮助其他人。 所有 – 我在iOS 7上运行我的应用程序,我遇到了UITableView的beginUpdates和endUpdates方法的问题。 我有一个tableview需要改变一个单元格的高度时,触摸。 以下是我的代码: – (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath { // If our cell is selected, return double height if([self cellIsSelected:indexPath]) { return 117; } // Cell isn't selected so return single height return 58; } – (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{ ChecklistItemCell *cell = (ChecklistItemCell *)[self.tableview cellForRowAtIndexPath:indexPath]; [cell.decreaseButton setHidden:NO]; […]

popupIOS7 navigatinBar tintColor变化

我开发了iPad应用程序。 我用导航控制器在popover中打开一些屏幕。 但是我没有改变IOS7中的navigationcontroller tint color。我怎样才能改变这种颜色。 感谢名单 UINavigationController *navigationController = [[[UINavigationController alloc] initWithRootViewController:airportsSearch] autorelease]; navigationController.navigationBar.barTintColor = [UIColor blackColor]; navigationController.navigationBar.translucent = NO; self.popOver=[[UIPopoverController alloc] initWithContentViewController:navigationController]; self.popOver.delegate = self; [self.popOver setPopoverContentSize:CGSizeMake(285, 370)]; [self.popOver presentPopoverFromRect:tempButton.frame inView:self.view permittedArrowDirections:UIPopoverArrowDirectionLeft animated:YES];

在UIActionSheet中添加UIPickerView时,iOS 7上的无效上下文错误?

我在UIActionSheet里面有一个UIPickerView,并且在SO里有很多其他人的build议: 在操作中添加UIPickerView&abutton – 如何? 如何在UIActionSheet中添加UIPickerView 这些解决scheme在iOS 7上testing我的应用程序之前一直运行良好。它仍然可以工作,但是在运行时Xcode中出现了很多“无效的上下文0x0”警告。 错误也带来了一个不错的信息: CGContextSetFillColorWithColor:无效的上下文0x0。 这是一个严重的错误。 此应用程序或其使用的库使用的是无效上下文,从而导致系统稳定性和可靠性的整体降级。 这个通知是礼貌的:请解决这个问题。 这将是即将到来的更新中的致命错误。 难道苹果终于想要停止这种解决scheme,还是我们可以解决或修复的东西?