Link sections within an App

You must Login before you can answer or comment on any questions.

Is it possible to link to sections/views within an app dynamically?

I'm looking to server dynamic banner ads on my app and I want to have the ability to link to different sections within the app instead of linking banners to an external URLs

1 Answer

how about adding an event list to the imageView, which will open the desired section?

imageview.addEventListener('click',function(e){
    //open a page
    page.open();
 
    //show a page
    page.show();
 
    //move to a tab
    tabgroup.setActiveTab('tab1');
});

Your Answer

Think you can help? Login to answer this question!