iPad VGA Connector - Mirror screen in own Application?

前端 未结 3 1711
再見小時候
再見小時候 2021-01-30 05:40

Is it possible to mirror the Screen over the VGA Connector? Can\'t find anything about this.

3条回答
  •  没有蜡笔的小新
    2021-01-30 06:25

    I think it worth adding that the QuartzCore framework is mandatory, or you'll have 4 errors at compile time.

    Undefined symbols:
      "_CATransform3DMakeRotation", referenced from:
          -[UIApplication(ScreenMirroring) updateMirroredWindowTransformForInterfaceOrientation:] in UIApplication+ScreenMirroring.o
          -[UIApplication(ScreenMirroring) updateMirroredWindowTransformForInterfaceOrientation:] in UIApplication+ScreenMirroring.o
          -[UIApplication(ScreenMirroring) updateMirroredWindowTransformForInterfaceOrientation:] in UIApplication+ScreenMirroring.o
      "_kCAGravityResizeAspect", referenced from:
          _kCAGravityResizeAspect$non_lazy_ptr in UIApplication+ScreenMirroring.o
         (maybe you meant: _kCAGravityResizeAspect$non_lazy_ptr)
      "_OBJC_CLASS_$_CADisplayLink", referenced from:
          objc-class-ref-to-CADisplayLink in UIApplication+ScreenMirroring.o
      "_CATransform3DIdentity", referenced from:
          _CATransform3DIdentity$non_lazy_ptr in UIApplication+ScreenMirroring.o
         (maybe you meant: _CATransform3DIdentity$non_lazy_ptr)
    ld: symbol(s) not found
    collect2: ld returned 1 exit status
    

提交回复
热议问题