This will fix the following case:
- (const uint8_t) decodeBytesForKey(key, returnedLength:lengthp)
- (int32_t) decodeInt32ForKey(key)
- (int64_t) decodeInt64ForKey(key)
- (uint32_t) machPort
fix the following warning:
[warn]: in file '/tmp/rb_docset/t189.rb':2:
2: class NSProxy < none
[warn]: in file '/tmp/rb_docset/t180.rb':2:
2: class NSObject < none
Because the following method is converted with strange syntax
- (UIBackgroundTaskIdentifier)beginBackgroundTaskWithExpirationHandler:(void (^)(void))handler
after converting:
def beginBackgroundTaskWithExpirationHandler()handler); end
In some place, the methods will be declared with semicolon in reference:
- (NSString *)activityTitle;
So, this method is converted to Ruby with strange syntax:
def activityTitle;(); end