Tagged Questions
2
votes
2answers
106 views
Comparing 3 arrays of various NSObject Subclasses
I have an NSDictionary which contains 3 NSArrays,
- posts
- comments
- likes.
And in each array are consistent NSObject Subclasses:
- Post
- Comment
- Like
Usually, I would just put all objects ...
1
vote
2answers
111 views
String sorting with numbers last objective c
I had a good search of SO but couldn't find anything relevant to this problem. I have a custom object class that implements a comparison method for sorting in arrays. This comparison uses the "name" ...
1
vote
2answers
144 views
Compare 4 float values for the highest value
Having trouble comparing 4 float values in objective c, I would like to return the highest or equal values of these 4 integers. As you can see two are the same here.
This is the NSLOG output
...
0
votes
1answer
29 views
Comparing a UILabel string to a mutable array in Objective-c
There are a lot of posts similar to mine but the answers given are not working on my program. I read a lot of forums and blogs already. I am really having a hard time, please help me. My program has a ...
0
votes
1answer
118 views
Comparing not identical sound files
I'm developing a program for iPhone.
I have read this article and I have some questions. After I get amplitude of sound file, which ranges of spectrum do I need to transform into FFT(Fast Fourier ...
0
votes
2answers
82 views
Finding NSStrings from one array in another (for loops & isEqualToString issue)
I want to add objects from NSArray *small whenever they don“t exist in NSArray *big.
But the output shows that the objects from *small which exist in *big are added. I have tried x isEqualToString: x ...
0
votes
1answer
324 views
UIWebView comparing current and defined URL's with a loop depending on result
I am trying to compare the current url in webView with a defined url say google.com
so in theory..
NSURLRequest *currentRequest = [webView request];
NSURL *currentURL = [currentRequest URL];
...
0
votes
1answer
378 views
comparing object attribute in one array to an object attribute in another array
i seem to be having difficulties in accessing and comparing objects in NSMutableArrays in objective c.
I'm very new so when explaining , some code would be nice.
I have a character class and a ...
0
votes
4answers
3k views
comparing arrays in objective-c
Ok a pretty simple question.. in c++ it seems to work but in objective-c i seem to struggle with it :S ..
If you want to compare two arrays it should be something like this right
for ( int i = 0; ...