How to access UI from CFRunLoopRun in ios

380 Views Asked by At

how can i pop up a new view when i get commands in CFRunloop (connectCallBack) in CFSocket class.

1

There are 1 best solutions below

4
On

It looks like you're approaching the problem from the wrong side.

You should handle this new view poping up in when the correct (kCFSocketConnectCallBack) type of CFSocketCallBack is invoked. Or possibly setting a flag there and handling view from main code.

You can have a BOOL flag called popUpNConnectedView that is initialized to NO.

You set it to YES in connectCallBack method. When your main loop sees it (at connection-oriented applications ther's usually some kind of a haertbeat timer) it pops up the view and clears the flag.

You didn't post any code so it's impossible to give you a more direct answer - you'll definetly find your answer here:

Network Programming: Chapter 7 - iPhone SDK Application Development

And some more reading material:

CFNetwork Programming Guide