我正在构建一个通过移动SAAS登录的应用程序 - Parse。
可以从登录请求返回多个错误代码。此时为每个错误代码运行一个if语句,并显示如下所示的相关警报视图:
if (error == nil) {
// Something went wrong
UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:NSLocalizedString(@"LoginAlertErrorTitle", @"Login Error Alert View Title") message:NSLocalizedString(@"LoginStandardError", @"Login error message text - standard error") delegate:self cancelButtonTitle:nil otherButtonTitles:NSLocalizedString(@"GlobalOKButtonTitle", @"Global Ok button title"), nil];
[alertView show];
} else if ([error code] == kPFErrorObjectNotFound) {
UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:NSLocalizedString(@"LoginAlertErrorTitle", @"Login Error Alert View Title") message:NSLocalizedString(@"LoginErrorObjectNotFound", @"Login error message text - object not found") delegate:self cancelButtonTitle:nil otherButtonTitles:NSLocalizedString(@"GlobalOKButtonTitle", @"Global Ok button title"), nil];
[alertView show];
} else if ([error code] == kPFErrorConnectionFailed) {
UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:NSLocalizedString(@"LoginAlertErrorTitle", @"Login Error Alert View Title") message:NSLocalizedString(@"LoginAlertErrorConnection", @"Login error message text - connection failed") delegate:self cancelButtonTitle:nil otherButtonTitles:NSLocalizedString(@"GlobalOKButtonTitle", @"Global Ok button title"), nil];
[alertView show];
} else {
NSLog(@"A Login error occurred: %i",[error code]);
UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:NSLocalizedString(@"LoginAlertErrorTitle", @"Login Error Alert View Title") message:[[error userInfo] objectForKey:@"error"] delegate:self cancelButtonTitle:nil otherButtonTitles:NSLocalizedString(@"GlobalOKButtonTitle", @"Global Ok button title"), nil];
[alertView show];
}
是否有更有效的方法来处理案例/切换?
实际的错误代码设置如下:
/*! @abstract 100: The connection to the Parse servers failed. */
extern NSInteger const kPFErrorConnectionFailed;
这让我觉得我可以在案例陈述中设置这个。这是解决这个问题的正确/最佳方法吗?它应该是一个单独的方法,如handleErrorAlert:
可能吗?
我如何在上面的示例中对此开关进行编码?
答案 0 :(得分:10)
在这种情况下,无论您使用switch
语句还是一系列if
- else if
,这只是一个品味问题。是的,switch
语句稍微有点效率,但在这种情况下,它确实没关系(它不像你每秒呼叫数千次)。使用您觉得更具可读性的内容。
你可能想稍微重构你的警报视图代码 - 你在所有情况下都做同样的事情,只有错误信息不同,所以有相当多的重复代码。你可以像这样重构它:
NSString *errorMessage = nil;
if (error == nil) {
errorMessage = NSLocalizedString(@"LoginStandardError", @"Login error message text - standard error");
} else {
switch ([error code]) {
case kPFErrorObjectNotFound:
errorMessage = NSLocalizedString(@"LoginErrorObjectNotFound", @"Login error message text - object not found");
break;
case kPFErrorConnectionFailed:
errorMessage = NSLocalizedString(@"LoginAlertErrorConnection", @"Login error message text - connection failed");
break;
default:
errorMessage = [[error userInfo] objectForKey:@"error"];
}
}
UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:NSLocalizedString(@"LoginAlertErrorTitle", @"Login Error Alert View Title")
message:errorMessage
delegate:self
cancelButtonTitle:nil
otherButtonTitles:NSLocalizedString(@"GlobalOKButtonTitle", @"Global Ok button title"), nil];
[alertView show];
答案 1 :(得分:4)
在typedef enum
上使用switch
,我认为这将是最干净的方式。像这样:
typedef enum
{
kServerError,
kInternetError,
kUnknowError
} kTypeError;
switch (aTypeError)
{
.
.
.
}
在您的具体情况下,您要关注switch
内的消息...... UIAlertView
是一个常见的部分。所以:
NSString *aTitle = nil;
NSString *aMessage = nil;
switch (aTypeError)
{
case kUnknowError:
{
aTitle = ...;
aMessage = ...;
}
break;
}
UIAlertView *alertView = [UIAlertView alloc] ...
答案 2 :(得分:1)
if (!error) {
// Handle error (?).
}
switch ([error code]) {
case kPFErrorObjectNotFound:
// Handle error.
break;
case kPFErrorConnectionFailed:
// Handle error.
break;
default:
// Handle error.
}
仅当-code
返回的值可用于switch
测试表达式时,此方法才有效。支持AFAIK,int
- 我不了解其他类型。