Questions tagged [xcode5.1]

Xcode 5.1 includes SDKs for OS X 10.9 Mavericks, OS X 10.8 Mountain Lion, and iOS 7.1.

Xcode 5.1 includes SDKs for OS X 10.9 Mavericks, OS X 10.8 Mountain Lion, and iOS 7.1.

  • Adds new Auto Layout constraints inspector with support.
  • Adds Quick Look support in the debugger for custom object types.
  • Improves ability to resolve symbols in Instruments.
  • Updates the iOS standard architecture setting to include 64-bit.
  • Includes additional bug fixes and stability improvements.

You can obtain Xcode in Mac App Store for free.

270 questions
2
votes
1 answer

Value Conversion issue: Implicit conversion loses integer precision: 'NSInteger' (aka 'long') to 'int32_t' (aka 'int')

I have upgraded my Xcode version from 5.0 to 5.1 & started occuring below error in GPUImage Library GPUImageVideoCamera.m:301:54: Implicit conversion loses integer precision: 'NSInteger' (aka 'long') to 'int32_t' (aka 'int') In below function on…
Dattatray Deokar
  • 1,923
  • 2
  • 21
  • 31
2
votes
4 answers

App suddenly crashes while processing presentViewController method in iOS 7.1

Today, I upgrade my Xcode to the latest version(Version 5.1 (5B130a)) to support iOS 7.1. After doing this, I run my project in Xcode as usually. Then app crashes. I didn't change any code before upgrading the SDK version. The code is running…
firestoke
  • 1,051
  • 11
  • 23
2
votes
2 answers

Core Plot and Xcode 5.1 - How to convert Core Plot to ARC?

I just installed Xcode 5.1 and found that it definitely requires projects to use ARC. I get error: garbage collection is no longer supported when trying to compile Core Plot (version 1.4). Out of curiosity I told Xcode to convert Core Plot to ARC.…
Dirk
  • 2,335
  • 24
  • 36
2
votes
1 answer

Xcode Library Broken with Xcode 5.1 - "Assertion failed"

Since updating to Xcode 5.1, I started receiving an issue: ld: warning: ignoring file /Users/User/Dropbox/Apps/MyApplication/Frameworks/Project.framework/Project, missing required architecture x86_64 in file…
RileyE
  • 10,874
  • 13
  • 63
  • 106
2
votes
1 answer

Initializing an external variable sized array in C++

I have a declaration like this: extern "C++" CHARSET_INFO compiled_charsets[]; which compiled fine so far, but now with the update to XCode 5.1 I get an error for that: .../my_sys.h:277:27: Definition of variable with array type needs an explicit…
Mike Lischke
  • 48,925
  • 16
  • 119
  • 181
1
vote
1 answer

Keyboard missing in simulator iOS 8 Xcode 6.1

I have migrated code from Xcode 5.x to Xcode 6.1. Everything is working fine except the missing keyboard. Whenever I try to enter text in textfield keyboard goes missing but text is entered. Why is this happening? Any fix?
Jayprakash Dubey
  • 35,723
  • 18
  • 170
  • 177
1
vote
1 answer

How to handle UI while starting skype call?

How to handle app ui while starting skype call. at now my app UI move down when skype call notification shows on status bar. I don't want this. anyone how to handle this? Thanks in advance.
Vinod Jadhav
  • 1,055
  • 1
  • 15
  • 37
1
vote
0 answers

Store image in .jpg Format

capture image from camera in app. and I want save it .jpg format. but I don't know how to save in .jpg? I found two methods UIImagePNGRepresentation, UIImageJPEGRepresentation(TempImage, 0.5); but I want to save in jpg format.
Vinod Jadhav
  • 1,055
  • 1
  • 15
  • 37
1
vote
2 answers

PresentModalViewController overlaps the navigation bar and status bar iOS 7

I resolved the navigation bar status bar issue in all my views, but when I use presentModalViewController to show another view, navigation bar and status bar overlaps again.I am using this for presenting new view: [self.parentViewController…
taman
  • 21
  • 4
1
vote
1 answer

Thread 1: signal SIGABRT Xcode 5.1

I'm trying to run my app however, every time I click on the Profile link my app crashes and I get the below message in my debugging output. See screen shot below. I am running Xcode 5.1. [UIImageView setFile:]: unrecognized selector sent to instance…
Annette
  • 317
  • 1
  • 3
  • 14
1
vote
0 answers

What is the Best Way To show UITextField with only a bottom border?

I would like to have UITextField appear only with a bottom border. See the designer's image below: UIBezierPath *path = [UIBezierPath bezierPath]; [path moveToPoint:CGPointMake(150.0, 350.0)]; [path addLineToPoint:CGPointMake(250.0,…
1
vote
2 answers

Playing a video in OSX

I'm developing a mac app that requires to play tutorial videos in the app itself. when a user presses a button on the app it should play the video here's the code for xcode 4.3 (incompatible with xcode 5.1) @synthesize…
Kelvin Ricafort
  • 105
  • 2
  • 8
1
vote
1 answer

fatal error file not found /Lexical preprocessor error IOS

I have a project deployed on the appstore(everything ok),which after 2 months on running source code gives me crazy errors. what i tried Build settings-> set YES to Always search user paths Not working Please provide some suggestions.I think i…
Suraj K Thomas
  • 5,773
  • 4
  • 52
  • 64
1
vote
0 answers

Mach-O Linker Error when using extra framework with target iOS 7

Hi I created my custom framework by using kstenerud/iOS-Universal-Framework that can be found in here : https://github.com/kstenerud/iOS-Universal-Framework I am using XCODE 5.1.1, when I add my framework to the project it gives me this error when…
Sabrican Ozan
  • 738
  • 3
  • 9
1
vote
1 answer

UITableView cell Contents are disappearing and overlapping when scrolled in UITableViewcell?

I have a UITableView with custom cells,those cells contain some textFields,segmented index and all.Once i entered the data in particular cell textfield and segmented index after that i scrolled the tableview data contents disappears and…
Ganesh Kumar
  • 708
  • 6
  • 25