Questions tagged [xcode7.2]

Related to the specific version of the Apple's IDE, Xcode 7.2. It was released on December 8, 2015.

144 questions
1
vote
1 answer

CMBlockBuffer, UnsafeMutablePointer et al in Swift

I am trying to convert some Objective C code provided in one of Apple's code examples here: https://developer.apple.com/library/mac/samplecode/avsubtitleswriterOSX/Listings/avsubtitleswriter_SubtitlesTextReader_m.html The result I have come up with…
Andre M
  • 6,649
  • 7
  • 52
  • 93
1
vote
2 answers

Jazzy OSX 10.11.3 Xcode 7.2.1 Issue Finding XCRUN

with the following command line, have the following issue with Jazzy. have checked the command line tools, etc, all looks good. $ echo $PATH /usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin $ whereis xcrun /usr/bin/xcrun shell command / script jazzy…
ort11
  • 3,359
  • 4
  • 36
  • 69
1
vote
2 answers

library not found after cocoapods integration

Integrated (objective C) Xcode 7.2 iOS 9.2: $ mkdir -p $HOME/Software/ruby $ export GEM_HOME=$HOME/Software/ruby $ gem install cocoa pods (automatic pods version (0.39)) $ export PATH=$PATH:$HOME/Software/ruby/bin $ cd/ to project folder $ pod…
1
vote
0 answers

Global Function from framework gives Undefined symbols linker error

I am trying to use a framework in my app (CoreBitcoin). Followed the build instructions from the README and copied the framework directory into my project. I also linked it in the Build Phases -> Link Binary With Libraries. Now the code compiles…
hphu
  • 171
  • 12
1
vote
0 answers

Debugger is not working Inside a particular Class in IOS Xcode 7.2

I am Facing a very Strange Problem in Xcode 7.2 , There is a TableViewCell in my project in which debugger skips the BreakPoint ,even when Compiler goes to the breakpoint as it prints the Log at there. (print("Print the Log")), it happens only…
Alok
  • 266
  • 2
  • 11
1
vote
1 answer

Contextual type for closure argument list expects 1 argument, but 2 were specified

I'm trying to get this algorithm working with swift 2.1: http://users.eecs.northwestern.edu/~wkliao/Kmeans/ though I am getting the error on this line: return map(Zip2Sequence(centroids, clusterSizes)) { Cluster(centroid: $0, size: $1) } Here's…
uplearned.com
  • 3,393
  • 5
  • 44
  • 59
1
vote
1 answer

Playhaven HTTP error= "403 Forbidden" response= "invalid signature";}

I am a newby who purchased a reskin app and I'm having problems when trying to get the ads to pop up while in Xcode 7 testing on my iphone. I followed the steps to enter the token and secret ID codes after registering the app in playhaven but I keep…
1
vote
1 answer

Issue with xcode 7.2 while Build and run app on iOS 9.2 device

When ever i build the project xCode shows too many errors like Too many errors emitted, stopping now. Expected ';' after top level declarator. While building module 'CoreFoundation' / 'Foundation' / 'Darwin' imported from /User/mac/Desktop/folder…
Ashish Thakkar
  • 944
  • 8
  • 27
1
vote
1 answer

POST request not working while using Alamofire pod in swift2?

I’m doing a Demo App in Swift 2 that makes an HTTP POST request. But don’t understand why my request doesn't hit the server. I’m using Alamofire 3.0, Xcode 7.2, swift 2.0. I installed the Alamofire pod based on this link:…
Ramakrishna
  • 712
  • 8
  • 26
1
vote
2 answers

Google Admob is Not working Xcode 7.2 using objective C

In ViewController.h my code is #import @class GADBannerView; @interface ViewController : UIViewController @property (strong, nonatomic) IBOutlet GADBannerView *addView; @end And ViewController.m File my code is @import…
Mehedi Hasan
  • 359
  • 3
  • 10
1
vote
3 answers

Swift dynamic tableview in UIViewController

I have been trying to add a tableview in my ViewController unfortunately no data is shown in my table view. numberOfSectionsInTableView , numberOfRowsInSection , cellForRowAtIndexPath are not even getting called.I tried tableview inside…
Joker
  • 830
  • 2
  • 14
  • 30
1
vote
0 answers

"xcodebuild" command line is not working as expected in Xcode 7.2 with option "-arch"

The following command line will work perfectly with Xcode 7.1 and Xcode 7.1.1. xcodebuild clean build -workspace MyProject.xcworkspace -scheme MyProject -sdk iphonesimulator9.2 -arch i386 -configuration Debug But the above is not working in Xcode…
arango_86
  • 4,236
  • 4
  • 40
  • 46
1
vote
2 answers

In-app purchase receipt verification for auto renewal using AFNetworking objective-c

I am writing below code using AFNetworking for receipt verification and it gives me status=210002 While it gives me status=0 in NSMutableURLRequest please help me by getting solution NSString *strurl =…
Patel Jigar
  • 2,141
  • 1
  • 23
  • 30
1
vote
2 answers

How to change tab bar item text colour on focus in TVOS

I have four item in tab bar. 1> Watch. (Black Colour) 2> On Demand. (Black Colour) 3> Search. (Black Colour) 4> Settings. (My Colour) How can i change the colour of item text in tab bar to match with its icon colour. (Right now Performance is…
1
vote
0 answers

Unable to view UITableView Cell ContentView after upgrade to Xcode 7.2

After the first cell the content cuts off although the the content is clearly there when I view it through the Document Outline. It's not visible when I scroll in my table view. However when I build the content successfully appears on the simulator…
Daisy R.
  • 633
  • 1
  • 7
  • 19