ios7.1

iOS7 new update V 7.1(11D167) not compatible in Xcode 5 for development

我的梦境 提交于 2019-11-30 08:40:42
I got notification of IOS7 new version V7.1. I have installed on my iPhone 4S. As I am developer my iPhone 4S is not detected in development mode in Xcode 5 SDK. When I opened organizer in Xcode. It shows, The version of iOS on “iPhone 4S” is not supported by this installation of the iOS SDK. Please restore the device to a version of the OS listed below, or update to the latest version of the iOS SDK; which is available here. OS Installed on iPhone 4S 7.1 (11D167) Hope Apple fix this issue. Thanks for any help. You can update to the latest version of Xcode using the OS X App Store application.

xCode 5.1 build crashes - SpriteBuilder

余生长醉 提交于 2019-11-29 08:52:17
I recently updated xCode to 5.1. All of a sudden my (cocos2d) builds keep on crashing when publishing to my iPhone 5s (iOS 7.1). It works fine in the simulator (iOS 7.1). I got a screenshot here: http://puu.sh/7rB8S.png Also I got a bunch of warnings since I updated xCode to 5.1. Replace above with: "7rBfp.png" (due to lack of reputation...) If you are willing to reproduce the problem, I followed this tutorial: https://www.makegameswith.us/tutorials/getting-started-with-spritebuilder/menus/ Once I added the MainScene background (and the button + methods) I was not able to build on my iPhone

How to link with framework without arm64 support in Xcode 5.1?

*爱你&永不变心* 提交于 2019-11-29 04:46:20
After upgraded a project on Xcode 5.1, Product > Build gives the following warning and error: ld: warning: ignoring file Dropbox/Dropbox.framework/Dropbox, missing required architecture arm64 in file Dropbox.framework/Dropbox (3 slices) Undefined symbols for architecture arm64: "_OBJC_CLASS_$_DBPath", referenced from: objc-class-ref in DropboxViewController.o It seems like the Dropbox.framework does not support arm64 yet. What are the Xcode settings to remove arm64 support from the project to have a clean build? Change: Architectures : Standard Valid Architectures : arm64 armv7 armv7s To:

Appium - Not able to launch the inspector

白昼怎懂夜的黑 提交于 2019-11-29 02:18:14
Team, I am facing issues launching the Inspector. I might be missing something in my configurations or setup, but not able to figure out. I am trying to connect to real device (iOS 7.1.2). Please find the below screenshots for your reference. /Users/rsangili/.bash_profile: line 3: export: `2': not a valid identifier /Users/rsangili/.bash_profile: line 6: export: `=/usr/local/lib/node_modules/grunt-cli/bin:/usr/local/apache-ant/bin:/user/local/bin/node:/usr/local/bin/npm:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/Users/rsangili/Downloads/apache-maven-3.2.1/bin': not a valid identifier info:

Assertion failure in -[UITableView layoutSublayersOfLayer:]

三世轮回 提交于 2019-11-28 23:39:34
I want to use an UISearchDisplayController on UIViewController , that includes an UITableView . I use Autolayout. When i try to put the SearchBar (_searchBar) in the tableHeaderView with self.tableView.tableHeaderView = _searchBar; I get the error ' NSInternalInconsistencyException ', reason: 'Auto Layout still required after executing -layoutSubviews. UITableView's implementation of -layoutSubviews needs to call super.' Disabling Autolayout, the error disappears, but i need Autolayout... The error appears, when I use Custom Cells or StandardCells... The error appears, when the TableView has

How is iBeacon support REALLY changed in iOS 7.1?

天涯浪子 提交于 2019-11-28 20:46:25
I've seen claims on the net that the newly released iOS 7.1's iBeacon support. Specifically: The system is supposed to still notify your app about didEnterRegion/didExitRegion events, even if the user explicitly kills your app. didEnterRegion/didExitRegion notifications are supposed to be faster from the background and/or with the device locked. I have not been able to confirm either of these claims with my own testing. In fact, I seem to be less likely to get didEnterRegion/didExitRegion notifications from a locked device. (more accurately I seem to get didEnterRegion notices, but not

iOS 7.1 UISearchBar gray view

折月煮酒 提交于 2019-11-28 12:38:18
I work at an application and I tested today on iOS 7.1. Until now my search bar was normal: But now I have this problem: A gray view appears and I don't know how to remove it because I don't have this view in my code. Does anyone have the same problem? It is an iOS 7.1 bug? Max Chuquimia My quick fix used some code I found here: https://stackoverflow.com/a/18664917/1153630 And then: searchBar.backgroundImage = [UIImage imageWithColor:[UIColor clearColor]]; I'm still not very impressed by it though: will update answer when I find a better way. You may also want to checkout: Colour changed in

Tab bar background is missing on iOS 7.1 after presenting and dismissing a view controller

会有一股神秘感。 提交于 2019-11-28 06:53:22
I've tried my app on iOS 7.1 and I found that the tab bar background disappears on a few occasions. I was able to track them down; it happens when: pushing a view controller placed inside navigation controller (that is inside tab bar controller) with hidesBottomBarWhenPushed = YES presenting a view controller and then dismissing it (i.e. the MFMailComposeViewController ) I've created a sample app (used the tab bar template + added button to display the view controller, and a mapView to be able to tell if the bar disappeared), and the issue is there. Here is all the code for the sample app that

iOS 7.1 UitableviewCell content overlaps with ones below

旧时模样 提交于 2019-11-28 05:19:32
So I have code, which is sucessfully working on iOS 7.0 but not in 7.1. I have a simple tableview, with code: - (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView { return 1; } - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section { return 10; } -(CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath { return 70.0; } - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"Cell" forIndexPath

xCode 5.1 build crashes - SpriteBuilder

佐手、 提交于 2019-11-28 02:26:38
问题 I recently updated xCode to 5.1. All of a sudden my (cocos2d) builds keep on crashing when publishing to my iPhone 5s (iOS 7.1). It works fine in the simulator (iOS 7.1). I got a screenshot here: http://puu.sh/7rB8S.png Also I got a bunch of warnings since I updated xCode to 5.1. Replace above with: "7rBfp.png" (due to lack of reputation...) If you are willing to reproduce the problem, I followed this tutorial: https://www.makegameswith.us/tutorials/getting-started-with-spritebuilder/menus/