[Solved] Instance of UIView on iOS
Mobile and Embedded
3
Posts
2
Posters
755
Views
2
Watching
-
Hi all,
does anyone no if the UIView which I get with:
QWindowList list = QGuiApplication::allWindows();
UIView *view = static_cast<UIView *>( QGuiApplication::platformNativeInterface()->nativeResourceForWindow("uiview", list.at(0)) );
is in a way different than the UIView native Objective-c code expects? Its a valid object but when
I pass it to a an iOS function as the view paramter I get an exception telling me "unrecoginzed selector".
Does anyone know whats wrong?
Thx,
Patrik -
Hi,
Can you show the code you are using for that ?