Questions tagged [beta]

Software development phase where the application is considered "feature complete" but still may have numerous bugs and usability issues.

708 questions
8
votes
2 answers

NSNotifications in Swift 3

Are the new notifications not currently working in Swift 3? I am doing: NotificationCenter.default().post(name: DidTouchParticleView, object: self.particle as? AnyObject) In a custom view's touchesBegan() and I need to send the particle object…
Youssef Moawad
  • 2,846
  • 5
  • 28
  • 50
8
votes
1 answer

iOS 10 Beta SDK - [UIDeviceRGBColor countByEnumeratingWithState:objects:count:]: unrecognized selector

When our iOS application is compiled on iOS 10 Developer Preview SDK, when launching one of the first view controllers of the application, the application crashes with this exception : *** Terminating app due to uncaught exception…
geolives
  • 159
  • 4
8
votes
2 answers

ASP.Net 5 Beta 8 xproj cannot be opened

I just installed the new release of ASP.Net 5 beta 8. I ran DotNetVersionManager-x64.msi and then WebToolsExtensionsVS14.msi. I tried to open a simple app that worked in beta 7 and it won't load the project with a message This project is…
Paul Speranza
  • 2,302
  • 8
  • 26
  • 43
8
votes
7 answers

Xcode 7 Beta 6, dyld ___NSArray0__ crash

For the first time I was able to compile my app in Xcode 7 (failed in beta 4 and 5). So, thats good progress I guess. However, when i load my app on my iPhone 6, iOS 8.4.1, it crashed in the debugger with the following message: dyld: Symbol not…
Sachin
  • 141
  • 2
  • 6
8
votes
4 answers

Can not disable production app in Google Play Developer Console in favor of beta

I uploaded my beta version of the app and I want to deactivate the production version. I figured out how to click switch to advanced and deactivate the production app but it will not let me save it, always give me in red at the top " The…
Todd Welch
  • 1,776
  • 2
  • 17
  • 23
8
votes
1 answer

CocoaPods - build for iOS 9 / Swift 2 with Xcode-beta

I have a "CocoaPod" (terminology?) that's currently at version 1.1. There's also a develop branch of the repo that requires Swift 2.0 (so needs a base SDK of IOS 9.0) with a PodSpec as follows: Pod::Spec.new do |s| s.name =…
Ashley Mills
  • 50,474
  • 16
  • 129
  • 160
7
votes
1 answer

Xcode 14 Beta 5 throws an exception

Xcode 14 Beta 5 shows this exception: [<_UINavigationBarContentViewLayout valueForUndefinedKey:]: this class is not key value coding-compliant for the key inlineTitleView. I am getting this new exception in all my obj-c projects while using Xcode 14…
Joshua
  • 1,974
  • 2
  • 23
  • 39
7
votes
3 answers

Apple WeatherKit Error Xcode 14 Beta 5 iOS 16

Trying to get the WeatherKit Beta working. have had the same error on Xcode 14 Betas 3/4/5 on both the simulator and physical device using the apple provide an example from WWDC or a simple project to load weather data. The error output is…
Charles
  • 95
  • 11
7
votes
1 answer

Avoid Text jiggling in SwiftUI

Any idea to avoid the jiggling below? The code is something like this: Text(format: "%02d:%02d", hours, minutes) .frame(width: 100, alignment: .trailing) (The frame is bigger than the string) NOTES: The problem is that "1" is thinner than "0"…
7
votes
3 answers

This version does not support collection view cell content view. Open this document with at least Xcode 11.0

I was excited to check out Xcode 11 with my existing xCode project, so I started coding with the latest beta version. Today I wanted to upload my new app update but of course Apple rejected the binaries advising me, to use a GM version of Xcode 11…
user3191334
  • 1,148
  • 3
  • 15
  • 33
7
votes
3 answers

How to beta test a WP7 app?

Is it possible to build an Ad Hoc build of our app and send it to our beta testers? Is this even possible?
Buju
  • 1,546
  • 3
  • 16
  • 27
7
votes
1 answer

prepare(for segue: UIStoryboardSegue, sender: AnyObject?) missing in swift 3.0/Xcode 8 b6

Using xcode 8 beta 6. Type override func prepare and I see this .. But I am looking for prepare(for segue: UIStoryboardSegue, sender: AnyObject?) Is this a bug? This class is a subclass of ViewController?
user3069232
  • 8,587
  • 7
  • 46
  • 87
7
votes
1 answer

Xcode 8 - Make the keyboard go away when a user clicks on the background

I have used this in the past. override func touchesBegan(touches: Set, withEvent event: UIEvent?) { self.view.endEditing(true) } But now in Xcode 8 beta I get this error: Declaration touchBegan(touches:withEvent) has different…
Jevon718
  • 354
  • 4
  • 10
7
votes
3 answers

Do you use a different app id for your iPhone beta apps?

Those of us with iPhone apps (released or unreleased) are able to send out limited beta builds using ad-hoc distribution. While the Apple docs for this have a few holes in them, there are a number of blogs, postings and other articles out there on…
philsquared
  • 22,403
  • 12
  • 69
  • 98
7
votes
2 answers

FormCollections missing from ASP.Net 5

What happened to FormCollections from System.Web.Mvc? In the past I would use something like this string value = data.GetValues(key).FirstOrDefault(); where data is a formcollection. Now when I try to implement a FormCollection it comes from…
HendPro12
  • 1,094
  • 3
  • 17
  • 50