在下面的响应中,我需要获取验证规则数组。我需要在另一个viewcontroller的tableview中显示validationRules中的字段名称。
(
{
accountPurpose = 4;
accountType = Savings;
bankUserId = Jjhhhhj;
bankerCode = "BASSEIN CATHOLIC CO-OP BANK (Band)";
createdTimeStamp = "<null>";
creditCardExpiry = "<null>";
creditCardNumber = "<null>";
customerAccountType = (
{
description = "<null>";
id = 0;
name = "<null>";
}
);
debitCardExpiry = "<null>";
debitCardNumber = "<null>";
defaultAccount = 0;
enabled = true;
id = 940;
mmid = 2323223;
phoneNumber = 9177509924;
serverId = 940;
updatedTimeStamp = "<null>";
validationRules = (
{
fieldDataType = String;
fieldDisplayName = MPIN;
fieldName = mpin;
fieldStatus = No;
id = 58;
maxFieldLength = 6;
minFieldLength = 4;
}
);
}
)
请帮帮我。
答案 0 :(得分:0)
这可以帮助您获取单元格文本字段所需的字符串。创建一个全局数组来存储我在此处使用的 Module Module1
Sub main()
Dim ppt As Presentation = Nothing
ppt.LoadFromFile("C:\Users\310238479\Desktop\test.pptx")
End Module
End Sub
等验证规则。获取JSON后,提取validationRules数组,如下所示
validationRulesArray
您可以将此let aDictionary = resultArray!.firstItem as! NSDictionary
self.validationRulesArray = aDictionary.objectForKey("validationRules") as! NSArray
传递到另一个视图进行显示。在validationRulesArray
委托方法中,编写以下内容以获取字符串。
cellForIndexPath
答案 1 :(得分:0)
https://github.com/Phillipus/JSONHandler只需转到链接并下载项目,我认为这是您想要的完美解决方案。
答案 2 :(得分:0)
在您的网络服务响应后,您将获得所有关键数据的字典数组。
PendingIntent.FLAG_CANCEL_CURRENT | PendingIntent.FLAG_ONE_SHOT
所以回复webservice ..
let validationRulesArray = NSMutableArray()
您可以将此数组传递给另一个视图控制器。并使用该数组数据显示在tableview中..