Can i include my try catch block with invokeLater statement in UiApplication for blackberry.
What is the exact purpose of using an invokeLater mothod.And how is it to be invoked?
Here is the code
UiApplication.getUiApplication().invokeLater(new Runnable()
{
public void run()
{
try{
//Statements
}
catch()
{
}
}
});