разрывы строк теряются в SQL Server

Кажется, работает:

static UIViewController *viewControllerForView(UIView *view) {
    UIResponder *responder = view;
    do {
        responder = [responder nextResponder];
    }
    while (responder && ![responder isKindOfClass:[UIViewController class]]);
    return (UIViewController *)responder;
}

-(void)showActionSheet {
    UIAlertController *alertController = [UIAlertController alertControllerWithTitle:nil message:nil preferredStyle:UIAlertControllerStyleActionSheet];
    [alertController addAction:[UIAlertAction actionWithTitle:@"Cancel" style:UIAlertActionStyleCancel handler:nil]];
    [alertController addAction:[UIAlertAction actionWithTitle:@"Do it" style:UIAlertActionStyleDefault handler:nil]];
    [viewControllerForView(self) presentViewController:alertController animated:YES completion:nil];
}
16
задан Oliver 5 December 2011 в 16:41
поделиться

1 ответ

Другое простое решение состоит в том, чтобы нажать кнопку "results to text" в SSMS. Не супер чистый, но дает Вам видимость разрывам строки приблизительно с половиной секунды работы.

0
ответ дан 30 November 2019 в 05:56
поделиться
Другие вопросы по тегам:

Похожие вопросы: