White screen when running InterAppAudio examples in simulator

Using xCode 7.3 on two different machines running Yosemite and El Capitan, I’m able to to run the the interAppAudio examples in the iOS Simulator, but the UI doesn’t show up. It just shows a blank white screen. Any ideas?

Regards,
Rob

Hi,
there’s a bug in the SDK in :
public.sdk/source/vst/interappaudio/VST3Editor.mm

The resizeView method must be like this :

//------------------------------------------------------------------------
tresult PLUGIN_API VST3Editor::resizeView (IPlugView* view, ViewRect* newSize)
{
	if (newSize && plugView && plugView == view)
	{
		if (view->onSize (newSize) == kResultTrue)
			return kResultTrue;
		return kResultFalse;
	}
	return kInvalidArgument;
}

That did it Arne. Thanks. There’s another small bug with duplicate symbols.

NSDataIBStream.mm

DEF_CLASS_IID(IStreamAttributes)

vstinitiids.cpp

DEF_CLASS_IID (IStreamAttributes)