Related to the specific version of the Apple's IDE, Xcode 7.1. It was released on October 21, 2015.
Questions tagged [xcode7.1]
120 questions
0
votes
1 answer
How can I make the tableview cliackable so it can take me to another page?
This is the code that I have so far but I want to make it clickable. Once you click on an item it can take you to another page.
import UIKit
import CoreData
class ViewController: UIViewController,UITableViewDataSource {
@IBOutlet weak var…

kaherna8
- 161
- 1
- 9
0
votes
0 answers
How to implement this kind of blur effect iOS 8 & iOS 9?
As you can see ,the map view should display with blur effect. I tried the UIBlurEffect, stackoverflow suggestions and many blur effect libraries but I not able achieve the actual effect.How can I achieve the exact blur effect , can anybody help me…

iniyan
- 131
- 3
- 15
0
votes
1 answer
Save incoming PDF in WebView to Memory
I have a project that is associated with opening PDF files. This is set in the Info.plist. When I get a PDF attachment in email, I can hold my finger on the PDF attachment and then 'Open in' in my app. In my AppDelegate, I have the following…

ChallengerGuy
- 2,385
- 6
- 27
- 43
0
votes
1 answer
Xcode swift 2 HTML img src
I have a project written in Swift 2.0 that exports some HTML written text as a PDF. I want to insert an image into my HTML but have to use quotations for the
. It it is not accepting the quotes because it is already…


ChallengerGuy
- 2,385
- 6
- 27
- 43
0
votes
2 answers
UIView inside UITableViewCell position issue - UPDATED
This is killing me.. (.mov from my issue)
I'd like to position my custom view inside my custom tableViewCell.
Made this simple expression for positioning:
If : indexpath.row % 2 == 0 ---> set view on the left (like x: 10, y: 10)
else: to the…

Zsolt
- 49
- 8
0
votes
1 answer
xcodebuild build failed with Xcode 7.1 and iOS 9.1 for iOS project with Cordova
I am trying to build iOS projects from the command line as part of a CI system. I intend to use the xcodebuild command to get an app file, then the app file will be provided to the xcrun command to get a signed ipa file for distribution.
My projects…

Quake
- 83
- 1
- 9
0
votes
1 answer
Can't launch Enterprise build prepared with Xcode7
Application crashes with following error (code signature invalid for)
/private/var/mobile/Containers/Bundle/Application/3A363B6A-1B5E-455E-958D-AED4211572BF/MyApp.app/Frameworks/libswiftCore.dylib:
code signature invalid for…

iOS Monster
- 2,099
- 1
- 22
- 49
0
votes
0 answers
Xcode 7.1: UILabel added to sizeclass regular/regular shown anywhere
In Xcode 7, I was able to add a UILabel only to the Regular/Regular size-class. I simply selected w: Regular h:Regular below the storyboard and added it to my controller using drag 'n' drop. Once I switched to another size-class, the element was…

Jan Brinkmann
- 11
- 5
0
votes
1 answer
Resize Panes in Xcode
The resizing of the different Panes/Windows in Xcode often stops working and I have to toggle hide or show in order to reactivate it.
If you look at the images below, sometime I cannot get a resize cursor as shown in the second image.
I have been…

Ryan Heitner
- 13,119
- 6
- 77
- 119
0
votes
1 answer
'setNewsstandIconImage' is only available on iOS 9.0 or newer
I see the strange compile error:
'setNewsstandIconImage' is only available on iOS 9.0 or newer
But this method was available in ios 7 and 8 on Xcode 6.4. How to fix it?

ChikabuZ
- 10,031
- 5
- 63
- 86
0
votes
2 answers
framework not found Xcode 7.1
I opened my old project in Xcode 7.1 and I encountered an error.
ld: framework not found LibXL
clang: error: linker command failed with exit code 1 (use -v to see invocation)
I had the framework LibXL in the project folder.
Always search user path…

Teja Nandamuri
- 11,045
- 6
- 57
- 109
0
votes
1 answer
I deleted Main.Storyboard, recoverd it but
I deleted Main.Storyboard. I recovered it by dragging it back to the project in xcode. However, now it does not show in Base.Iproj (other than that everything is working).
I tried moving it back to Base.Iproj but when I do that, nothing shows in…

zevij
- 2,416
- 1
- 23
- 32
0
votes
1 answer
How to 'pin' objects in XCode 7.1
I have an existing iPad portrait mode app (XCode 7.1) that I am trying to add landscape mode to. I am trying to follow one of Ray Wenderlic's outdated (2013) tutorials for using Auto Layout.
At one point, he says:
Hold down the ⌘ key while you…

SpokaneDude
- 4,856
- 13
- 64
- 120
0
votes
0 answers
Push Notifications are not working on production (adhoc) profile iOS QuickBlox
I am using Quick Blox for Push notification. Push notification is working when installed through Xcode (developer profile). But when I archive and export (adhoc build) app using adhoc profile it won't work.
I double check the app identifier is…

Bilal Ahmad
- 187
- 1
- 12
0
votes
0 answers
SCRecorder with Swift 2.1 - Cast from 'MDLMaterialProperty?!' to unrelated type
When I import the SCRecorder in my project, and compile, I start to receive the Cast from 'MDLMaterialProperty?!' to unrelated type warning in a lot of functions in my project.
I don't why I'm receiving this kind of warning and these are creating a…

Marcelo Cotrim
- 1
- 1