eventomer
eventomer
+1 for this feature
I managed to tap the button with this code: ``` XCUICoordinate *cordinate = [[self.app.tables.cells elementBoundByIndex:0] coordinateWithNormalizedOffset:CGVectorMake([UIScreen mainScreen].bounds.size.width-5, 0)]; [cordinate tap]; ```
``` else if(self.tint == FPPopoverWhiteTint) { colors[0] = colors[1] = colors[2] = 1.0; colors[3] = colors[4] = colors[5] = 1.0; colors[6] = colors[7] = 1.0; } ``` instead of ```...
any news about this?
I integrated wbyoung's solution into OHAttributedLabel drawTextInRect: method if anyone is interested: ``` - (void)drawTextInRect:(CGRect)aRect { if (_attributedText) { CGContextRef ctx = UIGraphicsGetCurrentContext(); CGContextSaveGState(ctx); // flipping the context to draw...