Questions tagged «ios7»

iOS 7是Apple iOS移动操作系统的第七个版本,是iOS 6的后续版本。它于2013年6月10日在该公司的Apple全球开发者大会(WWDC)上宣布,并于2013年9月18日发布。

20
致命错误:AST文件格式错误或损坏-Xcode
在最新版本的Xcode中构建应用程序时出现此错误: 致命错误:AST文件格式错误或已损坏在'/ Users / me / Library / Developer / Xcode / DerivedData / ModuleCache / XYZYIE6ZV0OP'1处生成模块高速缓存。 当我导航到: / Users / me / Library / Developer / Xcode / DerivedData / ModuleCache 我可以看到目录“ XYZYIE6ZV0OP”不存在。 有人知道我该如何解决吗?我无法按照错误消息第二部分的建议删除该目录中的任何内容,因为该目录不存在!
117 ios  xcode  ios7 


20
UITableView从iOS 7中的偏移量开始
我已将普通的简陋UITableView拖到iOS 7中的UIViewController上。 现在,第一个单元格开始之前存在一个垂直的空间偏移。我该如何摆脱呢?我希望第一行更接近UITableView实际开始的位置的顶部边缘。我没有要求大额补偿吗? 有任何想法吗?
115 uitableview  ios7 

9
导航栏出现在带有新iOS7 SDK的视图上方
CGRect cgRect1 = [[UIScreen mainScreen] applicationFrame]; UISearchBar *mySearchBar = [[UISearchBar alloc] initWithFrame:CGRectMake(0, 0, cgRect.size.width, 40)]; mySearchBar.autoresizingMask = UIViewAutoresizingFlexibleWidth|UIViewAutoresizingFlexibleHeight ; UITableView *myTableView = [[UITableView alloc] initWithFrame:CGRectMake(0, 40, cgRect.size.width, cgRect.size.height-40)]; myTableView.autoresizingMask = UIViewAutoresizingFlexibleWidth|UIViewAutoresizingFlexibleHeight; [self.view addSubview:mySearchBar]; [self.view addSubview:myTableView]; 在早期版本中,它可以正常工作。搜索栏出现在statusbar和导航栏下方。该tableview是出现在搜索栏下方 但是,当我在该菜单上运行时Xcode 5 sdk iOS 7,搜索栏不可见(我认为它位于状态栏和导航栏下方),并且导航栏也出现在表格视图上方。 可以通过iOS 7稳定的发行版进行修复吗? 还是我的编码问题? 还是应该通过添加的y (y = statubar height + …
113 iphone  ios  objective-c  ipad  ios7 

14
状态栏不会消失
我正在创建一个应用程序,并且希望状态栏隐藏。当我测试应用程序时,状态栏在显示初始屏幕时是隐藏的,但是一旦应用程序完全加载,状态栏就会重新出现。 我正在使用Xcode 5和iOS 7,并尝试以编程方式禁用状态栏 ([[UIApplication sharedApplication] setStatusBarHidden:YES withAnimation:UIStatusBarAnimationFade];), 在info.plist文件中,并在.xib文件中使用属性检查器。似乎没有任何作用。 有任何想法吗?
112 hidden  statusbar  ios7  xcode5 

17
UIStatusBarStyle PreferredStatusBarStyle在iOS 7上不起作用
在使用Xcode 5 for iOS 7构建的iPhone应用程序UIViewControllerBasedStatusBarAppearance=YES中info.plist,我设置了,并且ViewController我有以下代码: -(UIStatusBarStyle) preferredStatusBarStyle { return UIStatusBarStyleLightContent; } 但是状态栏在黑色背景下仍然是黑色的。 我知道它可以通过设置这个程序范围的更改UIViewControllerBasedStatusBarAppearance=NO在info.plist,但我确实需要改变这种对viewController由viewController基础在运行时。

14
iOS 7-状态栏与视图重叠
我在ViewController里面有一个UINavigationcontroller,但是NavigationBar被隐藏了。当我在iOS 7上运行该应用程序时,状态栏显示在视图顶部。有办法避免这种情况吗? 我不想编写任何特定于操作系统的代码。 我尝试将设置View controller-based status bar appearance为NO,但没有解决问题。
109 ios  statusbar  ios7 

5
iOS 7 TextKit-如何在文本中插入图像?
我正在尝试使用UITextView获得以下效果: 基本上我想在文本之间插入图像。该图像仅占用一排空间,因此不需要包装。 我尝试只是将UIView添加到子视图中: UIView *pictureView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 25, 25)]; [pictureView setBackgroundColor:[UIColor redColor]]; [self.textView addSubview:pictureView]; 但是它似乎漂浮在文本上并覆盖了文本。 我对排除路径进行了一些阅读,这似乎是实现此目的的一种方法。但是,我不想绝对定位图像-相反,它应该随文本一起流动(类似于<span>HTML中的行为)。
109 ios  ios7  textkit 

14
如何在UITableView中隐藏第一节标题(分组样式)
随着使用分组样式的表格视图的设计在iOS 7中发生了很大变化,我想隐藏(或删除)第一个节标题。到目前为止,我还没有实现它。 经过某种程度的简化,我的代码如下所示: - (CGFloat) tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section { if (section == 0) return 0.0f; return 32.0f; } - (UIView*) tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section { if (section == 0) { UIView* view = [[UIView alloc] initWithFrame: CGRectMake(0.0f, 0.0f, 640.0f, 0.0f)]; return view; } return nil; } - (NSString*) tableView:(UITableView *) tableView …
108 ios  uitableview  ios7 

10
UITableViewCell中的iOS7上的自动布局约束问题
我正在以编程方式使用自动布局约束来布局自定义UITableView单元,并且正确定义了 tableView:heightForRowAtIndexPath: 这是对iOS6的工作得很好,它的外观罚款iOS7以及 但是,当我在iOS7上运行该应用程序时,这是我在控制台中看到的消息: Break on objc_exception_throw to catch this in the debugger. The methods in the UIConstraintBasedLayoutDebugging category on UIView listed in <UIKit/UIView.h> may also be helpful. 2013-10-02 09:56:44.847 Vente-Exclusive[76306:a0b] Unable to simultaneously satisfy constraints. Probably at least one of the constraints in the following list is one you …

16
UIImagePickerController错误:对尚未渲染的视图进行快照会导致iOS 7中的快照为空
我仅在iOS 7中收到此错误,并且应用程序崩溃了。在iOS 6中,打开相机时,我从未收到任何错误,只有一次内存警告。 Snapshotting a view that has not been rendered results in an empty snapshot. Ensure your view has been rendered at least once before snapshotting or snapshot after screen updates. 这是我在做什么。 imagePicker = [[UIImagePickerController alloc] init]; [imagePicker setDelegate:self]; [imagePicker setSourceType:UIImagePickerControllerSourceTypeCamera]; [imagePicker setAllowsEditing:YES]; [self presentModalViewController:imagePicker animated:YES]; 我确实尝试过延迟presentModalViewController,但仍然收到相同的消息。几秒钟后(7-10),应用程序崩溃了。 此错误仅在iOS 7中出现。 …

14
Xcode 5和资产目录:如何引用LaunchImage?
我正在使用Xcode 5的资产目录,并且希望将其用LaunchImage作主视图的背景图像(一种非常常见的做法是使从“加载”到“加载”的过渡看起来很平滑)。 我想在资产目录中使用相同的条目来节省空间,而不必在两个不同的图像集中复制该图像。 但是,调用: UIImage *image = [UIImage imageNamed:@"LaunchImage"]; //returns nil

18
iOS更改导航栏标题的字体和颜色
所以我有应该更改导航栏标题字体的这段代码,但是确实 NSDictionary *attributes = [NSDictionary dictionaryWithObjectsAndKeys:[UIFont fontWithName:_dataManager.optionsSettings.fontString size:14], NSFontAttributeName, [UIColor whiteColor], NSForegroundColorAttributeName, nil]; [[UINavigationBar appearance] setTitleTextAttributes:attributes]; 使用此代码更改后退按钮字体效果很好。 //set backbutton font NSDictionary *normalAttributes = [NSDictionary dictionaryWithObjectsAndKeys: [UIFont fontWithName:_dataManager.optionsSettings.fontString size:15], NSFontAttributeName, nil]; [[UIBarButtonItem appearance] setTitleTextAttributes:normalAttributes forState:UIControlStateNormal];
101 ios  fonts  ios7  navigationbar 

10
iOS 7.0.3上的“ HelveticaNeue-Italic”发生了什么
刚刚将iPod touch升级到iOS 7.0.3,“ HelveticaNeue-Italic”似乎已经消失了。当我在电话上查询时: [UIFont fontNamesForFamilyName:@"Helvetica Neue"] 我得到以下fontNames(13): HelveticaNeue-BoldItalic, HelveticaNeue-Light, HelveticaNeue-UltraLightItalic, HelveticaNeue-CondensedBold, HelveticaNeue-MediumItalic, HelveticaNeue-Thin, HelveticaNeue-Medium, HelveticaNeue-ThinItalic, HelveticaNeue-LightItalic, HelveticaNeue-UltraLight, HelveticaNeue-Bold, HelveticaNeue, HelveticaNeue-CondensedBlack 当我在模拟器中运行相同的查询时,我得到(14): HelveticaNeue-BoldItalic, HelveticaNeue-Light, **HelveticaNeue-Italic,** HelveticaNeue-UltraLightItalic, HelveticaNeue-CondensedBold, HelveticaNeue-MediumItalic, HelveticaNeue-Thin, HelveticaNeue-Medium, HelveticaNeue-Thin_Italic, HelveticaNeue-LightItalic, HelveticaNeue-UltraLight, HelveticaNeue-Bold, HelveticaNeue, HelveticaNeue-CondensedBlack 还有其他人看到吗? - - 新的消息 - - 我回到了WWDC 2013视频“使用带有文本工具包的字体”,有趣的部分开始于12:22。演示者以OS X中的“ MetaFonts”为例。他说的是通话中的字体如下: + (NSFont *)messageFontOfSize:(CGFloat)fontSize 不能保证在不同版本甚至不同用途下都返回相同的基础字体。他的例子是露辛达·格兰德(Lucinda …
100 objective-c  ios7  uifont 

10
如何防止UINavigationBar覆盖iOS 7中的视图顶部?
更新到Xcode 5之后,我所有应用程序视图中的导航栏都向下移动。这是一些屏幕截图,第一个显示了下拉视图时的所有内容,第二个显示了所有未触及的内容。搜索栏应从导航栏开始。 有人知道我该如何解决吗? 编辑:我尝试过此以前的建议: if ([self respondsToSelector:@selector(edgesForExtendedLayout)]) self.edgesForExtendedLayout = UIRectEdgeNone; 但是它产生非常奇怪的结果。 这可能是因为由于导航栏的透明性,我在此视图控制器下显示了一个“幻灯片菜单”。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.