What is the equivalent of Cocoa's NSRange struct on Android (Java)? -


what equivalent of cocoa's nsrange struct on android?

typedef struct _nsrange {     nsuinteger location;     nsuinteger length; } nsrange; 

i'm trying find java class cannot find anything.

you can use java class :

class javansrange {     public integer location;     public integer length; } 

nsinteger ==> integer


Comments

Popular posts from this blog

c# - SelectList with Dictionary, add values to the Dictionary after it's assigned to SelectList -

how can i manage url using .htaccess in php? -

ios - I get the error Property '...' not found on object of type '...' -