UI7Kit icon indicating copy to clipboard operation
UI7Kit copied to clipboard

UIAlertView/UIActionSheet

Open youknowone opened this issue 12 years ago • 14 comments
trafficstars

UIAlertView

  • [x] Dynamic patch
  • [x] Flatten
  • [x] Dim view
  • [x] Seperators
  • [ ] Fine arrangement
  • [ ] Style
  • [ ] Text input
  • [ ] Showing Animation

UIActionSheet

  • [x] Dynamic patch
  • [x] Flatten
  • [x] Dim view
  • [x] Seperators
  • [ ] Fine arrangement
  • [ ] Style

youknowone avatar Jun 17 '13 13:06 youknowone

UIActionSheet(v0.0.14) crashes with "[UIActionSheet _setTheme]: unrecognized selector" :(

iT0ny avatar Jun 26 '13 19:06 iT0ny

Please add UIAlertViewStyle(w/ text inputs) to UIAlertView to-do list

iT0ny avatar Jun 27 '13 13:06 iT0ny

Thanks updated

youknowone avatar Jun 27 '13 14:06 youknowone

@youknowone this looks like a visual glitch ios simulator screen shot aug 19 2013 9 19 12 pm

segiddins avatar Aug 20 '13 01:08 segiddins

Probably related to the commits referenced by #73

segiddins avatar Aug 20 '13 01:08 segiddins

Also, UIAlertView is heavily broken with Appirater ios simulator screen shot aug 19 2013 11 00 28 pm

segiddins avatar Aug 20 '13 03:08 segiddins

I should review upper one. About Appirator, UI7Kit does not fit for all the alert view environment yet, unfortunately.

You can opt-out @"UI7AlertView" to avoid this problem temporary. https://github.com/youknowone/UI7Kit/blob/master/UI7Kit/UI7KitCore.h#L27

youknowone avatar Aug 20 '13 03:08 youknowone

I'd rather not opt out of UI7AlertView. The problem seems to be related to the row calculation in UI7AlertView's -relayout.

segiddins avatar Aug 20 '13 11:08 segiddins

@youknowone as soon as we can figure this out I can ship a new version of my app that fixes the bug you noticed

segiddins avatar Aug 20 '13 11:08 segiddins

Could you share code for Activate, Later alert view? It seems new bug after moving cancel button to bottom. About Appirater, I have no idea. It looks similar like known 'repeated alert view' problem, but I have no idea how to fix it.

youknowone avatar Aug 20 '13 11:08 youknowone

UIAlertView *alertView = [UIAlertView bk_alertViewWithTitle:@"Activate Your Account" message:@"You need to activate your account. Go to slader.com/account/activate/please before it's too late."];
[alertView bk_addButtonWithTitle:@"Activate" handler:^{
     NSURL *activateURL = [NSURL URLWithString:@"http://slader.com/account/activate/please"];
     [[UIApplication sharedApplication] openURL:activateURL];
}];
[alertView bk_setCancelButtonWithTitle:@"Later" handler:nil];
[alertView show];

Although I'm using BlocksKit, I don't think that's what's responsible.

segiddins avatar Aug 21 '13 00:08 segiddins

@youknowone any update?

segiddins avatar Aug 22 '13 11:08 segiddins

Not yet, sorry.

youknowone avatar Aug 22 '13 13:08 youknowone

Yeap, still problems with textinput in UIAlertView, using iOS6

gabrielribeiro avatar Sep 07 '13 18:09 gabrielribeiro