Nikolay Derkach

Results 7 issues of Nikolay Derkach

Hi there, first of all thanks for a great free service you made! I'd like to know what is the caching interval for the captured images? I retrieve screenshots of...

In Objective-C `loadIfNeeded` is expected to return a value and gives a warning: `Ignoring return value of function declared with "warn_unused_result" attribute`

help wanted

First of all, thanks for building this! This PR makes the framework app extension safe so that it can be integrated into apps with extensions.

When using the deb for the current repository, I have the following error when loading InspectiveC with cycript: ``` cy# intFunc=new Type("v").functionWith(int);objFunc=new Type("v").functionWith(id);classFunc=new Type("v").functionWith(Class);selFunc=new Type("v").functionWith(SEL);voidFunc=new Type("v").functionWith(new Type("v"));objSelFunc=new Type("v").functionWith(id,SEL);classSelFunc=new Type("v").functionWith(Class,SEL);handle=dlopen("/usr/lib/libinspectivec.dylib",RTLD_NOW);setMaximumRelativeLoggingDepth=intFunc(dlsym(handle,"InspectiveC_setMaximumRelativeLoggingDepth"));watchObject=objFunc(dlsym(handle,"InspectiveC_watchObject"));unwatchObject=objFunc(dlsym(handle,"InspectiveC_unwatchObject"));watchSelectorOnObject=objSelFunc(dlsym(handle,"InspectiveC_watchSelectorOnObject"));unwatchSelectorOnObject=objSelFunc(dlsym(handle,"InspectiveC_unwatchSelectorOnObject"));watchClass=classFunc(dlsym(handle,"InspectiveC_watchInstancesOfClass"));unwatchClass=classFunc(dlsym(handle,"InspectiveC_unwatchInstancesOfClass"));watchSelectorOnClass=classSelFunc(dlsym(handle,"InspectiveC_watchSelectorOnInstancesOfClass"));unwatchSelectorOnClass=classSelFunc(dlsym(handle,"InspectiveC_unwatchSelectorOnInstancesOfClass"));watchSelector=selFunc(dlsym(handle,"InspectiveC_watchSelector"));unwatchSelector=selFunc(dlsym(handle,"InspectiveC_unwatchSelector"));enableLogging=voidFunc(dlsym(handle,"InspectiveC_enableLogging"));disableLogging=voidFunc(dlsym(handle,"InspectiveC_disableLogging"));enableCompleteLogging=voidFunc(dlsym(handle,"InspectiveC_enableCompleteLogging"));disableCompleteLogging=voidFunc(dlsym(handle,"InspectiveC_disableCompleteLogging")) ***...

I get the following error when a client connects to the proxy: ``` 2015-08-05 12:45:23+0200 [#0] New connection from 192.168.1.83:49355 2015-08-05 12:45:27+0200 Unable to connect to peer: [Failure instance: Traceback:...

I'm using the following code to init a button: ``` swift var invertButton:RZVibrantButton = RZVibrantButton(frame:CGRectZero, style:RZVibrantButtonStyle.Invert) ``` ``` swift required public init(frame:CGRect, style:RZVibrantButtonStyle) { super.init(frame: frame) self.style = style commonInit()...