bcyng

Results 11 comments of bcyng

i also get the same problem

.animation(nil, value: 0) doesnt have the same affect as .animation(nil). Ie doesn’t turn off the animation. the beta https://developer.apple.com/documentation/swiftui/text/animation(_:) is now final in iOS15 - doesn’t have the same affect...

> I have these charts in a scroll view - when they are on-screen there is a noticeable lag as they scroll past (and animation doesn't play until you stop...

the transaction solution seems to have broken in iOS16 b1 at least for pie charts. not sure if this is a bug in the beta or whether they have intentionally...

also get this problem. shows as recording in home app (red circle) but no recordings.

i get the same problem. if i encrypt a file on a 32 bit device and open on a 64bit device it fails or vice versa.

this should really be done using the autoresizingmask on the label. label.autoresizingMask = UIViewAutoresizingFlexibleLeftMargin | UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleRightMargin | UIViewAutoresizingFlexibleTopMargin | UIViewAutoresizingFlexibleHeight |UIViewAutoresizingFlexibleBottomMargin; though this currently causes the text to...

I got A4 support working by replacing createReportWithName in PRKGenerator.m with the following code ``` #define kPaperSizeA4 CGSizeMake(595,842) #define kPaperSizeLetter CGSizeMake(612,792) - (void)createReportWithName:(NSString *)reportName templateURLString:(NSString *)templatePath itemsPerPage (NSUInteger)itemsPerPage totalItems:(NSUInteger)totalItems pageOrientation:(PRKPageOrientation)orientation...