I just upgraded my mac to 10.10 and Xcode to 6.1,
found a strange thing which about storyboard,
my case is using a swift project, can not connect custom protocol delegate from storyboard anymore.
the old connected which comes with old version of Xcode is fine, but I can not connect any new delegate anymore.
even I can not reconnect the old one once I removed the connected.
Does anyone occur this situation ??
============================== Updated ==============================
View Class
@objc public protocol VideoViewResizeDelegate {
func shouldVideoViewResetLayout(videoView: GvVideoView) -> Bool;
}
@IBOutlet var resizeDelegate: VideoViewResizeDelegate?;
ViewController Class
@IBDesignable public class ViewController: UIViewController, VideoViewResizeDelegate {
...
}