I've this code:

Qt Code:
  1. GPSMessages::GPSMessages(GPSManager &gpsManager): _message(nullptr)
  2. {
  3. connect(&gpsManager, GPSManager::onGpsFound, this, GPSMessages::onGpsFound);
  4. connect(&gpsManager, GPSManager::onGpsNotFound, this, GPSMessages::onGpsNotFound);
  5. }
To copy to clipboard, switch view to plain text mode 

Compiling for Android works well, but If compile with iOS appears this error:

Qt Code:
  1. error: call to non-static member function without an object argument
  2. connect(&gpsManager, GPSManager::onGpsFound, this, GPSMessages::onGpsFound);
To copy to clipboard, switch view to plain text mode 

Qt for iOS supports this or must to use the SIGNAL and SLOT macro?