I have one NSArray
with names in string objects like this:@[@"john", @"smith", @"alex",
@"louis"]
, and I have another array that contains lots of names. How can I check that all the objects in the first array are in the second?
相关问题
- CALayer - backgroundColor flipped?
- Core Data lightweight migration crashes after App
- back button text does not change
- Change sort order of strings includes with a speci
- iOS (objective-c) compression_decode_buffer() retu
相关文章
- 现在使用swift开发ios应用好还是swift?
- TCC __TCCAccessRequest_block_invoke
- xcode 4 garbage collection removed?
- Xcode: Is there a way to change line spacing (UI L
- Unable to process app at this time due to a genera
- How can I add media attachments to my push notific
- didBeginContact:(SKPhysicsContact *)contact not in
- Custom Marker performance iOS, crash with result “
Use this code..
output array contains..
"john","smith","alex","loui
as per ur requirement.
Try this way;