Questions tagged [xcode7-beta5]

Apple's Xcode 7 beta 5 is a prerelease version of Xcode 7 released on August 6, 2015.

82 questions
1
vote
1 answer

TableViewController inside TabViewController inside NavigationViewController not showing navigation title and item in runtime, but shows in storyboard

I have a TableViewController inside a TabViewController inside a NavigationController with navigation title and item, as seen here: On runtime, navigation bar is there, but title and add item are not shown, as seen here: (don't mind the white…
Itai Spector
  • 612
  • 10
  • 23
1
vote
3 answers

Xcode7, iOS9 use of unresolved identifier 'EKSpanThisEvent'

i got a problem with this code import UIKit import EventKit let eventStore = EKEventStore() eventStore.requestAccessToEntityType(EKEntityType.Event, completion: { (success, accessError) -> Void in if accessError != nil { …
1
vote
1 answer

Split method in swift 2.0 (XCode 7 beta 5)

I have just updated Xcode 7 to beta5 and have found out that the split function is replaced with split method. I am not that experienced in Swift yet to figure out how to update my current code to the new syntax. let components =…
driver733
  • 402
  • 2
  • 6
  • 19
0
votes
0 answers

_OSByteOrder.h:49:1: error: function definition is not allowed here

I am including dyld.h to provide the function _NSGetExecutablePath() which will give the path to the executable for OS X 10.10. But when including dyld.h in a C compile, I get the following error: /usr/include/libkern/i386/_OSByteOrder.h:49:1:…
virgban
  • 49
  • 7
0
votes
1 answer

xcode7: hit linker command failed with exit code 1 under

I hit below error when build app on real device(ios9.0) use xcode7 beta: ld: library not found for -lPods...... clang: error: linker command failed with exit code 1 (use -v to see invocation) I tried to change the config "Enable Bitcode" to…
ziv.zhao
  • 11
  • 4
0
votes
1 answer

UITextField Cursor and Keyboard Issue

My app was running fine on ios 8.4, but now after trying it on ios 9 beta, once the app is opened, the cursor on the UITextfield doesn't show up. The keyboard doesn't come up. Shouldn't it come automatically? The app works perfectly fine till…
0
votes
0 answers

Multiple MKMapView 's causes EXC_BAD_ACCESS

My app has a need to implement a map in two seperate UIViewController's, the problem is that once one of the maps has been rendered, trying to open the second causes a EXC_BAD_ACCESS error that shows at the declaration of AppDelegate, I have tried…
justin shores
  • 627
  • 7
  • 23
0
votes
0 answers

UITableViewCell not displaying contents in Xcode 7

I updated Xcode to the new version 7 for ios 9 apps. my app before had these custom cells and they had labels in them and they had a data source and it worked but when i run the app and the table view shows the cells they are empty without the…
Simcha Hoffmann
  • 148
  • 1
  • 14
0
votes
1 answer

How to center labels in simulator?

I am new to xcode and I'm still trying to figure out how the controller and simulator works. I am using xcode beta 7. If I try to center my text field and label in the controller, it looks shifted to the right in the simulator. How do I get it to…
TorontoUser
  • 101
  • 2
  • 9
0
votes
0 answers

EXC_BAD_INSTRUCTION - Swift 2

I am making an iOS application with Swift 2. I have set 10 buttons tags' from 1-10. I am creating a loop for which var i loops through all numbers 1-10. A button I created is set to that tag. I am trying to set that button's image to nil. Here is my…
Pranav Wadhwa
  • 7,202
  • 6
  • 31
  • 53
0
votes
1 answer

stringByAppendingPathComponent: in Xcode 7 beta 5

In the latest build of Xcode 7 (beta 5), the NSString method stringByAppendingPathComponent: has been entirely removed. This had been incredibly useful when working with file paths Is there a new method to replace this or achieve similar…
Henry Glendening
  • 2,132
  • 2
  • 13
  • 22
0
votes
1 answer

ios 9 UITableView ghost empty cells

After updating to latest XCode 7 beta 5, my application is behaving very strange. After launch I got this: After several updates of the page: And again after several updates the section went normal (but bugs in another sections): All the time in…
0
votes
1 answer

Shared Text doesn't get shared to Facebook (but to others)

I have this code that shares a screenshot of the app, an initial Text and a URL via the Apple Share menu when a Share Button is pressed. It works like a charm with Twitter, Messages, Email etc, but when i wanna share to Facebook or the Facebook…
Ben Bar
  • 55
  • 1
  • 3
0
votes
1 answer

share URL together with Screenshot and Text

I have a very quick beginners question: How can i have this function share a URL as well? I always follow everything and think i got it right, but it doesn't quite seem to work... Thanks a lot in advance! func takeSnapshot(view: UIView) { let…
Ben Bar
  • 55
  • 1
  • 3
0
votes
1 answer

Xcode 7 Beta 5 - All subviews missing from Storyboard

I've recently switched up to Xcode 7 Beta 5 and I've been trying to solve the UITableView issue that I know lots have experienced. One solution I found was to disable size classes, however, once I did that I wanted to roll back my solution to a…
Jovin J
  • 462
  • 5
  • 15