I'm guessing the Safari authentication you are mentioning is the single sign on feature of the Facebook API. It just manifests itself as Safari if you are in the Simulator. If you are on a physical device w/ the Facebook App installed it will forward you to an authorization page in Facebook, or if already authorized will simply log you in.
I believe the piece you're missing on the single sign on is setting up a callback URL and registering that URL for your app in the .plist app configuration file.
Facebook has a pretty detailed tutorial on getting everything setup:
https://developers.facebook.com/docs/guides/mobile/#ios
A specific URL needs to be registered
in this file that uniquely identifies
the app with iOS. Create a new row
named URL types with a single item,
URL Schemes, containing a single
value, fbYOUR_APP_ID (the literal
characters fb followed by your app
id).
I'm also using the Three20 framework and the Facebook SDK and both should work fine together. Though there are enough steps to getting the Facebook SDK up and running that first time that it's a bit tricky to get going.