ss-prasanth / ImageSearch

0 stars 0 forks source link

ImageSearch #1

Open ss-prasanth opened 10 years ago

ss-prasanth commented 10 years ago

Please review imageSearch app and share your comments /cc @nesquena @timothy1ee. How to change the width of UISearchBar when orientation changes? I did that using searchBar.frame, but the searchBar is resetting the width when we start editing.

timothy1ee commented 10 years ago

OK, looks good. There are 2 options for handling view layouts: Auto Layout or manually. Auto Layout is still very new, and it's important to know how to use both methods, since both methods are in use in production apps.

Manual approach:

Auto Layout approach (this is the one you used):

ss-prasanth commented 10 years ago

Thanks Tim! /cc @timothy1ee.