I have this method in my code:
- (void) fullDMXReceived:(NSString*)finalData {
It's called when a full line of <DMX>255,255,255,255,255</DMX> comes in and the line is stored in 'finalData'.
I need some code to determine if 'finalData' is correctly formatted before sending it to a parser:
NSArray* allIncomingParseDMX1 = [finalData componentsSeparatedByString:@"<DMX>"];
NSString *parseDMXString1 = [allIncomingParseDMX1 objectAtIndex:1];
NSArray* allIncomingParseDMX2 = [parseDMXString1 componentsSeparatedByString:@"</DMX>"];
NSString *parseDMXString2 = [allIncomingParseDMX2 objectAtIndex:0];
NSArray* allIncoming = [parseDMXString2 componentsSeparatedByString:@","];
[redSlider setStringValue:[allIncoming objectAtIndex:0]];
[greenSlider setStringValue:[allIncoming objectAtIndex:1]];
[blueSlider setStringValue:[allIncoming objectAtIndex:2]];
[strobeSlider setStringValue:[allIncoming objectAtIndex:3]];
[strobeRandomSlider setStringValue:[allIncoming objectAtIndex:4]];
[self controlChange];
Sometimes, in error, finalData comes in as something other than <DMX>255,255,255,255,255</DMX> and when it does the app crashes. When finalData is not <DMX>255,255,255,255,255</DMX> I just want it to ignore it completely and wait for a good one.
I was thinking of having an if statement that matches this criteria:
- String contains only ONE
<DMX>and only ONE</DMX>. - String contains exactly 4 ","
- String contains at least 5 numbers - as in this case
<DMX>0,0,0,0,0</DMX>and no greater than 15 numbers - as in this case<DMX>255,255,255,255,255</DMX>.
How can I accomplish this?
Thanks!
