-
Hi, I'm not sure the intent of Charts, so I'm not sure if this is a bug or just an implementation detail.
Say you have a stacked bar chart with 3 values per bar, and want to control the text color of…
-
```swift
class var red1: UIColor {
return UIColor(red: 213.0/255.0, green: 17.0/255.0, blue: 17.0/255.0, alpha: 1.0)
}
```
-
I didn't create custom xib for each view controller and instead joining each view controller at Main.StoryBoard with that code
```
let controller1 = self.storyboard?.instantiateViewControllerWithIden…
-
Hey, @egmoll7 first of all nice work! I am experimenting with `EMAlertController` right now and found few issues with it.
`cornerRadius` will not work if I set `actionBackgroundColor` on `action`s…
-
let pickerView = UIPickerView()
pickerView.delegate = self
picker = UIPickerView.init()
picker.delegate = self
picker.dataSource = self
picker.back…
-
Hi, most likely just my ignorance. I got confetti to work (yay). But then all my other tap gestures stop working. I'm sure it's something simple?
In my code, I have:
```
self.startConfetti()
…
-
```
NSMutableAttributedString *text = [NSMutableAttributedString new];
for (int i = 0; i < tags.count; i++) {
NSString *tag = tags[i];
UIColor *tagStrokeColor = _bordColor;
UIColor *tagFil…
-
for example
It seems that the two are the same effect
`[row.cellConfig setObject:[UIColor redColor] forKey:@"backgroundColor"];`
`[row.cellConfigAtConfigure setObject:[UIColor purpleColor] forKey:@…
-
![68747470733a2f2f7261772e6769746875622e636f6d2f726e797374726f6d2f524e46726f737465644d656e752f6d61737465722f696d616765732f636c69636b2e676966](https://cloud.githubusercontent.com/assets/1210321/3493771…
-
Hi,
I'm using the following code. Unfortunately, the text is not displayed in the placeholder
where am I wrong?
[_userNew setPlaceholder:@"pippooooooo"];
[_userNew setBackgroundColor:[UIColor …