Richard B.
Richard B.
This should help : https://developer.apple.com/forums/thread/662082
Can you try to add the [NSLocalNetworkUsageDescription](https://developer.apple.com/documentation/bundleresources/information_property_list/nslocalnetworkusagedescription) key to your Info.plist and tell us if it makes a difference ?
Oh, I remember what I've done to have two iPad communicates fine : just send one packet (and you'll see the system alert about local network access)
Nice catch, maybe an indication about changing port in the debugPrint and in comment of ConnectionError.bindSocketFailed should help next users having this issue https://github.com/gunterhager/UDPBroadcastConnection/blob/master/UDPBroadcast/UDPBroadcastConnection.swift#L173 https://github.com/gunterhager/UDPBroadcastConnection/blob/2303b9178f2cdb35e61edbeacbb0f9df437c1266/UDPBroadcast/UDPBroadcastConnectionError.swift#L18
Just found a way to reproduce this issue (got it on our Jenkins, then replaced my local Carthage/Build folder to the one built on jenkins side, and got the same...
Just tested it, "cmd + shift + T" do the TestSwift.swift -> TestSwiftTests.swift, but do not came back to TestSwift.swift Edit : still using xcode 6.4
Ok, found why : On "back to code cmd+shift+t", the sourceFile is used, while swift file is in headerFile : ``` [[self XcodeNavigatorClassSeam] jumpToFileURL:[NSURL fileURLWithPath:referenceCollection.sourceFile.absolutePath]]; ``` Quick fix : ```...
Pushed three bugreports yesterday : - for Aviator (jump between test class / class under test ; https://github.com/marksands/Aviator, assuming it should be shipped with xcode...) - for an internal plugin...
Got some spindump after having unsigned xcode8... I fixed them by replacing signed xcode : ``` #!/bin/sh mv /Applications/Xcode.app/Contents/MacOS/Xcode /Applications/Xcode.app/Contents/MacOS/Xcode.signed mv /Applications/Xcode.app/Contents/MacOS/Xcode.unsigned /Applications/Xcode.app/Contents/MacOS/Xcode open /Applications/Xcode.app/ mv /Applications/Xcode.app/Contents/MacOS/Xcode /Applications/Xcode.app/Contents/MacOS/Xcode.unsigned mv /Applications/Xcode.app/Contents/MacOS/Xcode.signed...