In the specific case that you show, there is no difference. Some people like to think of what tweetPickertype is UIPickerView *, that is, a pointer to UIPickerView. These people usually write it like
UIPickerView* tweetPicker;
Other people prefer to think of it as *tweetPicker- it is UIPickerView, that is, dereferencing a pointer gives UIPickerView. These people usually write:
UIPickerView *tweetPicker;
, C ( Objective-C - ) . , , :
int* a, b, c;
int *a, *b, *c;
- C ( Objective-C) " ", . b c , . a .
"" C ( ..), , - void * id, .