UIAlertView with textfield and three buttons issue in ios 6

后端 未结 4 1687
旧巷少年郎
旧巷少年郎 2020-12-17 05:45
     UIAlertView* alert = [[UIAlertView alloc] initWithTitle:@\"Enter Student Name\"        message:nil delegate:self cancelButtonTitle:@\"Cancel\" otherButtonTitles         


        
4条回答
  •  萌比男神i
    2020-12-17 06:18

    In stead of messing with UIAlertView, you should use a custom presented (or a modal) view. Apple also doesn't like you to mess up with UIAlertView.

    So, my (and also the best) suggestion for you is to go with a custom presented (or a modal) view which is also a correct approach in your case also.

提交回复
热议问题