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
Post a Comment