02-11-2013 06:00 AM
Hi,
a little problem here..
i'm using qml to create the pages then in c++ i do all the actions
so in my c++ code i'm doing to following:
mImageView = root->findChild<ImageView*>("latestCast");
bool res = connect(mImageView, SIGNAL(touch (bb::cascades::TouchEvent *event)), this, SLOT(latestClicked(bb::cascades::TouchEvent *event)));to bad this is generating the following:
No such signal bb::cascades::ImageView::touch (bb::cascades::TouchEvent *event)
Any solutions for this?
thx
02-11-2013 06:06 AM
The documentation says that that signal does not exist. (https://developer.blackberry.com/cascades/referenc
You can use an ImageButton for that maybe? Then you can just listen for the click event.