The community is creating some incredible analyses and writing about Swift. What I keep asking myself whenever learning and reading about Swift is: how likely is this to change soon?
This document is an attempt to gather the Swift features that are still in flux and likely to change.
To contribute: fork this project, add a section below (don't forget to update the Table of Contents!), and create a pull request.
- Absence of math.h macros
- Abstract methods
- Better error handling
- C++ support
- C union support
- Dynamic keyword
- Enumerating enum types
- Enums nested in generic classes broken
- Flow-sensitive optional unwrapping
- IBOutlet
- Mutable optional value types
- Optionals for values conforming to the LogicValue protocol
- Ranges
- Recursive nested functions
- Reflection
- Systems programming features
- Unowned references breaking in Beta 2 and 3
- Usage of @-sign in front of keywords
This is a known problem, it will be fixed in later betas.
-- Chris Lattner
Source: https://devforums.apple.com/message/989902#989902
FWIW, we already have many bugs tracking the idea of adding abstract methods to swift. We'll consider it in future releases, we understand the value :-)
-- Chris Lattner
Source: https://devforums.apple.com/message/1006592#1006592
We're aware of the opportunity and also desire better error handling features in Swift, but they didn't make it in time for 1.0.
-- Chris Lattner
Source: https://devforums.apple.com/thread/228324?start=50&tstart=0
This is another obviously desirable feature, it is just a lot of work and didn't make it in 1.0 either.
-- Chris Lattner
Source: https://devforums.apple.com/thread/228324?start=50&tstart=0
We'll have at least partial support for importing unions in a future seed.
-- Joe Groff
Source: https://devforums.apple.com/message/1002630#1002630
'dynamic' doesn't do anything in Beta 4, it will be wired up (and explained) in the next Beta.
-Chris
Source: https://devforums.apple.com/message/1010788#1010788
Does anyone else think this would be fundamentally useful? Or is their a good way of apporaoching this in Swift currently that I'm missing?
Yes. All of this would be super useful. We have a large number of radars asking for similar functionality, thanks!
-- Chris Lattner
Source: https://devforums.apple.com/message/1003674#1003674
That's another frequently reported bug. Unfortunately, we likely won't have time to make it work for the 1.0 release, but we intend to produce a decent compiler error message saying that it isn't supported (yet). A workaround is to define the enums outside of generic classes.
-- Chris Lattner
Source: https://devforums.apple.com/thread/236195?start=25&tstart=0
With this feature, optional types would be implicitly unwrapped in the context of a block checking if an optional has a value, like so:
let x: Type?
if exists x {
x.doSomething() // works without ? or !
}
We're definitely aware of the advantages of control-flow sensitive type refinement for optionals (and also for other subtype relationships). This would be particularly handy in ternary operators, but isn't something on the books for 1.0. We have several radars requesting that and tracking it for consideration in a future release.
-- Chris Lattner
Source: https://devforums.apple.com/message/1005148#1005148
In Beta 3 (and earlier) the @IBOutlet attribute implicitly makes the variable weak, and implicitly makes it an implicitly unwrapped optional (unless it's explicitly marked with ?). We added the 'strong' modifier in Beta 3.
This is super confusing, too magic, leads to problems (like this) where "retains" are lost for types like arrays because the only reference is weak, and isn't even best practice on iOS where most outlets should be strong. For all of these reasons, in a future Beta, @IBOutlet will become "just" an annotation for IB, without any implicit behavior.
-- Chris Lattner
Source: https://devforums.apple.com/message/1002722#1002722
The issue here is that optional forcing and binding operators (postfix ! and ?) return an immutable rvalue, even when the operand is a mutable lvalue. This means that you cannot perform mutating operations on the result, which is why optional arrays, dictionaries and other value types are pretty useless right now. Unfortunately there isn't a great solution or workaround right now: one approach is to wrap the value in a class and use the optional on the class wrapper:
class StringArray {
var elts : String[]
}
var myArray: StringArray?
We consider this a significant problem and are investigating various solutions to incorporate in a later Beta.
-- Chris Lattner
Source: https://devforums.apple.com/message/998882#998882
Optional Bools in a boolean context are confusing.
var foo: Bool? = false
// This will print bar
if foo {
println("bar")
}
This problem exists with any optional of something that conforms to the LogicValue protocol (e.g. nested optionals, optional of bool, etc). We consider it serious issue that needs to be fixed for 1.0 and have some ideas, but haven't settled on a solution yet.
-- Chris Lattner
Sources: https://devforums.apple.com/thread/234399?tstart=0
Range operators were changed in Beta 3, and Beta 4 brought new stride()
functions to replace by()
. However, there are still many issues:
Ranges aren't in a good place in the current betas. Among known bugs:
- "5 ... 1" does the wrong thing.
- "1.0 ... 2.1" produces an infinite range.
- The "by()" method on ranges is "unprincipled" and doesn't always work
- Subscripting a range produces the wrong results
- Inclusive ranges including the max values "0...UInt8.max" do the wrong thing
We have a cohesive rework of this entire area coming in a later Beta.
-- Chris Lattner
More improvements are due in forthcoming betas, addressing a variety of issues iterating over floating point ranges, constructing negative ranges, and several other known range-related problems.
-- Xcode beta 4 release notes
Source: https://devforums.apple.com/message/1002719#1002719, http://adcdownload.apple.com//Developer_Tools/xcode_6_beta_4_o2p8fz/xcode_6_beta_4_release_notes.pdf
This is due to a known bug with recursive nested functions. You can fix this by pulling them out to the top level.
-- Chris Lattner
Sources: https://devforums.apple.com/message/997536#997536
Though it’s not documented in the Swift Standard Library Reference — and is subject to change, and could disappear entirely — Swift has a reflection API.
-- Brent Simmons
No official word from anyone inside Apple as to whether it's gonna go public before 1.0.
Sources: http://inessential.com/2014/07/13/swift_reflection https://gist.github.com/peebsjs/9288f79322ed3119ece4
The focus of Swift 1.0 is definitely on improving general app development, but we do expect Swift to grow capabilities (e.g. perhaps even the ability to write inline assembly code) that allow it to fully span the gamut of programming: from writing the lowest level firmware up to the highest level application programming. We prefer to do this carefully and deliberately over time, rather than attempting to solve all the world's problems at once.
-- Chris Lattner
Source: https://devforums.apple.com/message/1007178#1007178
Unowned References Breaking in Beta 2 and 3
This should be fixed in Beta 3.
-- Chris Lattner
Still doesn't work in beta 3: see #5
Source: https://devforums.apple.com/message/997278#997278
Some of the @-attributes were changed in Beta 4 to declaration modifiers, shedding the @ prefix. However, more changes to these attributes will follow.
Future betas will include improvements to @class_protocol and adjust @prefix and other operator attributes.
-- Xcode beta 4 release notes
This is something we're continuing to evaluate, expect @ signs to change in subsequent betas.
-- Chris Lattner
Source: https://devforums.apple.com/thread/228324?start=25&tstart=0, http://adcdownload.apple.com//Developer_Tools/xcode_6_beta_4_o2p8fz/xcode_6_beta_4_release_notes.pdf
Beta 4 adds three levels of access control to user-defined entities: public
(available anywhere), internal
(available within the target where they're defined) and private
(available only within the file where they're defined).
By default, most entities in a source file have internal access. This allows application developers to largely ignore access control while allowing framework developers full control over a framework's API.
It's also possible to define attributes with public getters but private setters.
Source: http://adcdownload.apple.com//Developer_Tools/xcode_6_beta_4_o2p8fz/xcode_6_beta_4_release_notes.pdf
Character was changed in Beta 4 to hold a full grapheme cluster instead of a single code point.
Certain accented characters (like é) can be represented either as a single code point or as a sequence of two or more code points (e + ́)
Before Beta 4, é achieved using "e" and a combining mark would be treated as two Character instances. Now, every character is a single Character. The change helps avoid a class of bugs when dealing with complex Unicode strings.
In addition to the above, Beta 4 removes \x
, \u
and \U
escape sequences for Unicode characters and replaces them with a single, less error-prone \u{1234}
syntax
Sources: http://oleb.net/blog/2014/07/swift-strings/ https://devforums.apple.com/message/1007773#1007773
From Beta 4 Release Notes:
CGFloat is now a distinct floating-point type that wraps either a Float on 32-bit architectures or a Double on 64-bit architectures.
Sources: http://adcdownload.apple.com//Developer_Tools/xcode_6_beta_4_o2p8fz/xcode_6_beta_4_release_notes.pdf
What is happening here is that CGFloat is a typealias for either Float or Double depending on whether you're building for 32 or 64-bits. This is exactly how Objective-C works, but is problematic in Swift because Swift doesn't allow implicit conversions.
We're aware of this problem and consider it to be serious: we are evaluating several different solutions right now and will roll one out in a later beta. As you notice, you can cope with this today by casting to Double. This is inelegant but effective :-)
-- Chris Lattner
Sources: https://devforums.apple.com/message/998222#998222
The @final, @lazy, @optional, and @required attributes have been converted to declaration modifiers, specified without an @ sign.
Source: http://adcdownload.apple.com//Developer_Tools/xcode_6_beta_4_o2p8fz/xcode_6_beta_4_release_notes.pdf
The .by() method for ranges has been replaced with general stride() functions. To adopt stride(), use stride(from: to: by:) for exclusive ranges and stride(from: through: by:) for inclusive ranges.
For example, you can now do:
stride(from: x, to: y, by: z) // was: (x..<y).by(z)
stride(from: x, through: y, by: z) // was: (x...y).by(z)
More improvements are due in forthcoming betas, addressing a variety of issues iterating over floating point ranges, constructing negative ranges, and several other known range-related problems.
Source: http://adcdownload.apple.com//Developer_Tools/xcode_6_beta_4_o2p8fz/xcode_6_beta_4_release_notes.pdf
With release of Beta 4, the full grammar of operators was specified.
The set of characters is in flux, but yes, most unicode symbol characters in the BMP that are classified as 'symbol' and 'math' are available as operator characters.
-- Joe Groff
It's not documented yet, but the set of allowed operator characters includes 'math' and 'symbol' characters in the Unicode BMP, and operator characters can be augmented with combining characters. The full set of supported characters will be documented in one of the following seeds.
-- Joe Groff
Sources: https://devforums.apple.com/thread/231723?tstart=450 https://devforums.apple.com/message/1000934#1000934
structs with a @lazy property followed by a non-lazy property crashes the compiler.
This is fixed, but didn't make it into Beta 3. Stay tuned for a later Beta,
-- Chris Lattner
The code from the Developer Forums no longer causes a segmentation fault in the compiler in Beta 4.
Source: https://devforums.apple.com/message/1000950#1000950
uppercaseString
andlowercaseString
properties were removed from StringinsertionSort
andquickSort
were removedCString
was removed.const char *
values are now imported asConstUnsafePointer<Int8>
modulusWithOverflow
was replaced byremainderWithOverflow
Float
andDouble
no longer conform toRandomAccessIndex
, which means they can no longer be used to index a collectiontrue
andfalse
are now language literals.Bool
conforms to a newBooleanLiteralConvertible
protocol that allows user-defined types to support Boolean literals.ArrayBuffer
,ArrayBufferType
,SliceBuffer
andContiguousArrayBuffer
were removed (the reason being, those structures were only an implementation detail of corresponding types)reverse
is no longer lazy and simply returns an Array. Newlazy
functions can be used to lazily reverse, filter and map collections through newLazyForwardCollection
,LazyRandomAccessCollection
andLazySequence
structures
Sources: http://airspeedvelocity.net/2014/07/21/changes-in-the-swift-standard-library-in-beta-4/ http://adcdownload.apple.com//Developer_Tools/xcode_6_beta_4_o2p8fz/xcode_6_beta_4_release_notes.pdf
Before Beta 3, the shorthand for an Array type was Type[]
, and Dictionary types were written Dictionary<KeyType, ValueType>
. Array type shorthand was changed to [Type]
and Dictionaries types now have a shorthand syntax [KeyType: ValueType]
(e.g. [String: Bool]
)
Since Beta 3, Array has full value semantics to match Dictionary, String and other value types.
Array semantics were in flux at the time of Beta 1, and have been revised to provide full value semantics like Dictionary and String. This will be available in later betas.
-- Chris Lattner
Sources: https://devforums.apple.com/thread/228695?start=75&tstart=
What is going on here is that initializers have privledged access to 'let' properties while they run: these properties are actually mutable when accessed directly within the initializer. This is very useful when you're configurating an object during its setup, but it is absolutely required when you have an immutable property dependent on some argument to the initializer, e.g.:
class C {
let x : Int // immutable property
init(input : Int) {
x = input // mutating an immutable property!
}
}
This is an important part of making immutable properties (as opposed to random other immutable variables) useful and functional, but it is dangerous, and potentially allows extensions to a type to violate invariants.
Beta 3 fixes this by only allowing mutation within non-convenience initializers. Convenience inits must delegate to some other initializer anyway, so that initializer can take an argument and do the mutation.
Long story short, this is a feature, not a bug :-)
-- Chris Lattner
Source: https://devforums.apple.com/message/1003240#1003240
The half-closed range operator was changed from ..
to ..<
.
We considered this carefully. As you can see from this thread, small syntactic issues like this are polarizing, subject to personal preferences, and have no one right answer. See also http://en.wikipedia.org/wiki/Bikeshed
For what it's worth, this approach is precendented in the groovy language. It optimizes for readability and clarity: you're unlikely to mistake one operator for the other when skimming code, and new people coming to Swift are unlikely to assume that ..< is an inclusive range operator (like most assumed when they saw "0..5")
-- Chris Lattner
I'd really like it if there was only a single range operator, but that isn't possible (AFAIK):
- You need to have a half-open range operator to be able to represent an empty range.
- You need an inclusive range operator to represent finite enumerated sequences when you want to include the last element (e.g. enums, but also integers that you want to include the largest integer value in)..
-- Chris Lattner
Sources: https://devforums.apple.com/message/1000100#1000100 https://devforums.apple.com/message/999669#999669