MTPopupWindow icon indicating copy to clipboard operation
MTPopupWindow copied to clipboard

Popup-window style view for Objective-C, which loads contents of an HTML file. Easy one-line usage. Check the readme for example

Results 6 MTPopupWindow issues
Sort by recently updated
recently updated
newest added

Hi, I am using your lib, on Swift. And I have issue related to your pop up.some times pop up not immediately appearing. just after 1 min or in case...

Just rebuilt my project with the latest Xcode (Version 6.3.1 (6D1002)) and when I call [MTPopupWindow showWindowWithHTMLFile:@"http://www..."]; the app bombs out with the exception: **\* Terminating app due to uncaught...

I have used your code same as it but it crashed when i click the close button. [closeBtn addTarget:self action:@selector(closePopupWindow) forControlEvents:UIControlEventTouchUpInside]; i didn't change the closePopupWindow method -(void)closePopupWindow { //remove...

in the showInView function add below. else if ([self.fileName hasPrefix:@"/"]) { //load a local file NSError\* error = nil; ``` NSString* fileAtPath = self.fileName; NSString* fileContents = [NSString stringWithContentsOfFile:fileAtPath encoding:NSUTF8StringEncoding...

Hi, can anyone help. Tried to call the MTPopupWindow in a TableViewController. Getting this error: ``` *** Assertion failure in -[UITableView layoutSublayersOfLayer:], /SourceCache/UIKit_Sim/UIKit-2903.23/UIView.m:8540 *** Terminating app due to uncaught exception...

Scaling of MTPopupWindow broken since iOS7. Got it working by changing the resizing code in -(void)doTransitionWithDictionary:(NSDictionary *)dictionary to following code: UITextView\* textViewToMeasureWith = [[UITextView alloc] initWithFrame:CGRectZero]; [textViewToMeasureWith setFont:[UIFont systemFontOfSize:16]]; [textViewToMeasureWith...