Activity for Christa Runge

  • Christa Runge Christa Runge modified a comment on ticket #639

    The API seems broken for modal view controllers. The controllers on the navigation stack are shown immediately, without animation; but the modal view controllers are always animated. And maximum two can be stacked before I get the error message "Warning: Attempt to present <uinavigationcontroller: 0x7ff335829c00=""> on <uinavigationcontroller: 0x7ff33582e000=""> whose view is not in the window hierarchy!" Note: we stack 3 modal views, e.g. Drill / Edit / Learning data. In this case it does not restore...

  • Christa Runge Christa Runge posted a comment on ticket #639

    The API seems broken for modal view controllers. The controllers on the navigation stack are shown immediately, without animation; but the modal view controllers are always animated. And maximum two can be stacked before I get the error message "Warning: Attempt to present <uinavigationcontroller: 0x7ff335829c00=""> on <uinavigationcontroller: 0x7ff33582e000=""> whose view is not in the window hierarchy!" No idea for any work-around (except not using this API)</uinavigationcontroller:></uinaviga...

  • Christa Runge Christa Runge modified a comment on ticket #639

    See also: http://aplus.rs/2013/state-restoration-in-ios-6-without-storyboards/ Very detailed, step-by-step instructions. Easy to follow. Highly recommended. http://aplus.rs/2013/state-restoration-for-modal-view-controllers/ Tips and tricks for modal view controllers.

  • Christa Runge Christa Runge modified ticket #654

    Startup view controller: separate processing and visualisation

  • Christa Runge Christa Runge created ticket #654

    Startup view controller: separate processing and visualisation

  • Christa Runge Christa Runge modified a comment on ticket #650

    1) The error message "... BSMachError: ...Unable to insert COPY_SEND" is not related. The race condition occurs although the error message is not shown. 2) Example scenario: in the database list, press "Bearbeiten", then select a database. modify the difficulty, but keep the cursor in this field. press 'back'. select the same database to check its values. Expected: the difficulty is on its new value. Observed: the difficulty is on its old value. Note: As we don't offer a 'cancel' option at this screen,...

  • Christa Runge Christa Runge modified ticket #650

    Race condition on leaving DB Edit

  • Christa Runge Christa Runge posted a comment on ticket #650

    1) The error message "... BSMachError: ...Unable to insert COPY_SEND" is not related. The race condition occurs although the error message is not shown. 2) Example scenario: in the database list, press "Bearbeiten", then select a database. modify the difficulty, but keep the cursor in this field. press 'back'. select the same database to check its values. Expected: the difficulty is on its new value. Observed: the difficulty is on its old value. Note: As we don't offer a 'cancel' option at this screen,...

  • Christa Runge Christa Runge posted a comment on ticket #653

    https://stackoverflow.com/questions/56980875/what-does-invalid-mode-kcfrunloopcommonmodes-mean Probably a bug in the SDK. It seems to be related to a switch (toggle) inside a table view, and to some kind of race condition if switching trigers a reload of the table,

  • Christa Runge Christa Runge modified ticket #653

    Error message in DB Edit on activate/deactivate database

  • Christa Runge Christa Runge modified ticket #650

    Race condition on leaving DB Edit

  • Christa Runge Christa Runge created ticket #653

    Error message in DB Edit on activate/deactivate database

  • Christa Runge Christa Runge posted a comment on ticket #652

    Investigate what is a good error strategy: popViewControllerAnimated: what happens if this is not the last on the stack? Will it be removed in isolation? popToViewControllerAnimated: how to locate the 'last good' parent? Responsibilities to provide error status and to perform strategy? popToRootControllerAnimated: should work always - but maybe too hard?

  • Christa Runge Christa Runge modified ticket #652

    Review / test UI state restoration error pathes

  • Christa Runge Christa Runge created ticket #652

    Review / test UI state restoration error pathes

  • Christa Runge Christa Runge modified ticket #651

    Review / implement cleanup of all resources

  • Christa Runge Christa Runge created ticket #651

    Review / add cleanup of all resources

  • Christa Runge Christa Runge modified a comment on ticket #639

    TODO: DBNavigationController.completeStartup pops the remaining vc from its stack if one of them reports a failure. This is currently implemented but not yet tested. TODO: karatasiAppDelegate.terminateApplication triggers the vc before closing the db. Do not forget to remember the card for test and drill here.

  • Christa Runge Christa Runge modified a comment on ticket #639

    TODO: DBNavigationController.completeStartup pops the remaining vc from its stack if one of them reports a failure. This is currently implemented but not yet tested. TODO: karatasiAppDelegate.terminateApplication needs to trigger the vc before closing the db, so they can remember the card for test and drill. Not yet implemented.

  • Christa Runge Christa Runge modified a comment on ticket #639

    TODO: DBNavigationController.completeStartup pops the remaining vc from its stack if one of them reports a failure. This is currently implemented but not yet tested.

  • Christa Runge Christa Runge modified a comment on ticket #639

    TODO: DBNavigationController.completeStartup should dismiss the remaining vc from its stack if one of them reports a failure. This is currently implemented but not yet tested.

  • Christa Runge Christa Runge posted a comment on ticket #639

    TODO: do not forget: DBNavigationController.completeStartup should dismiss the remaining vc from its stack if one of them reports a failure.

  • Christa Runge Christa Runge created ticket #650

    Race condition on leaving DB Edit

  • Christa Runge Christa Runge modified ticket #649

    Error message 'unbalanced animations' on startup

  • Christa Runge Christa Runge posted a comment on ticket #649

    Resolved in commit 8c5daee1a50ac296b64671d1c443a4e0633d182c. Solution: The order of instructions in startup was mudled up. The API documentation is a bit unclear here. http://aplus.rs/2013/state-restoration-in-ios-6-without-storyboards/ shows a nice and correct example.

  • Christa Runge Christa Runge modified a comment on ticket #639

    See also: http://aplus.rs/2013/state-restoration-in-ios-6-without-storyboards/ Very detailed, step-by-step instructions. Easy to follow. Highly recommended.

  • Christa Runge Christa Runge modified a comment on ticket #639

    See also: http://aplus.rs/2013/state-restoration-in-ios-6-without-storyboards/ Very detailed, step-by-step instructions. Highly recommended.

  • Christa Runge Christa Runge posted a comment on ticket #639

    See also: http://aplus.rs/2013/state-restoration-in-ios-6-without-storyboards/

  • Christa Runge Christa Runge modified a comment on ticket #649

    Suggestions from the internet: an animation was started before the previous was finished push / present / or pop operations on a view controller, or performing a segue from viewDidLoad or viewWillAppear. The correct time is viewDidAppear same view controller pushed twice, or popped twice, or added twice to the view hierarchy wrong / mismatching / missing calls of super for the view callback methods (-viewWillAppear, -viewDidAppear, -viewDidLoad, -viewWillDisappear, -viewDidDisappear ) present modal...

  • Christa Runge Christa Runge modified a comment on ticket #649

    Suggestions from the internet: an animation was started before the previous was finished push / present / or pop operations on a view controller, or performing a segue from viewDidLoad or viewWillAppear. The correct time is viewDidAppear same view controller pushed twice, or popped twice, or added twice to the view hierarchy wrong / mismatching / missing calls of super for the view callback methods (-viewWillAppear, -viewDidAppear, -viewDidLoad, -viewWillDisappear, -viewDidDisappear ) present modal...

  • Christa Runge Christa Runge modified a comment on ticket #649

    Suggestions from the internet: an animation was started before the previous was finished push / present / or pop operations on a view controller, or performing a segue from viewDidLoad or viewWillAppear. The correct time is viewDidAppear same view controller pushed twice, or added twice to the view hierarchy, or popped twice wrong / mismatching / missing calls of super for the view callback methods (-viewWillAppear, -viewDidAppear, -viewDidLoad, -viewWillDisappear, -viewDidDisappear ) present modal...

  • Christa Runge Christa Runge posted a comment on ticket #649

    Suggestions from the internet: an animation was started before the previous was finished push / present / or pop operations on a view controller, or performing a segue from viewDidLoad or viewWillAppear. The correct time is viewDidAppear same view controller pushed twice, or added twice to the view hierarchy, or popped twice wrong / mismatching / missing calls of super for the view callback methods (-viewWillAppear, -viewDidAppear, -viewDidLoad, -viewWillDisappear, -viewDidDisappear ) present modal...

  • Christa Runge Christa Runge posted a comment on ticket #649

    It happens between DBNavigationController.viewWillAppear and DBNavigationController.viewDidApear.

  • Christa Runge Christa Runge created ticket #649

    Error message 'unbalanced animations' on startup

  • Christa Runge Christa Runge posted a comment on ticket #607

    Hmmm ... not sure if we really want this. 1) DBListViewController and CatTableViewController: they have currently the "Edit" button on the right side in the navigation bar. However, in Edit mode, on the right side we have the '+' button, and the 'Done' button is on the left side. 2) CatEditViewController: on leaving the view it invokes [self setEditing:NO...]. No other call related to editing the table view .

  • Christa Runge Christa Runge posted a comment on ticket #607

    Candidates are (they have a setEditing: method): DBListViewController CatTableViewController CatEditViewController LabeledSwitchCell DBListCell DataFieldCell

  • Christa Runge Christa Runge modified ticket #623

    Database list shows sometimes wrong card numbers

  • Christa Runge Christa Runge modified ticket #633

    Creating new card with data wizard does not refresh number of cards in cat view

  • Christa Runge Christa Runge modified ticket #645

    Synch: Strange error message in console window

  • Christa Runge Christa Runge posted a comment on ticket #645

    Close as "won't fix". We don't setup credentials in the credential store.

  • Christa Runge Christa Runge posted a comment on ticket #645

    https://stackoverflow.com/questions/46099940/credstore-perform-query-error "This error occurs when trying to retrieve an URLCredential from URLCredentialStorage for an unknown URLProtectionSpace ... Give it a credential for the protection space: ... and the error goes away next time you try to retrieve the credential. ... Credential storage on iOS allows users to securely store certificate-based or password-based credentials on the device either temporarily or permanently to the keychain. I suspect...

  • Christa Runge Christa Runge modified ticket #648

    Refactor layout constraints to improve maintainability

  • Christa Runge Christa Runge modified ticket #635

    WebKit not closed down properly?

  • Christa Runge Christa Runge modified ticket #626

    Minimum height of table row in card list

  • Christa Runge Christa Runge posted a comment on ticket #626

    Fixed in commit 0298d48

  • Christa Runge Christa Runge modified ticket #648

    Refactor layout constraints to improve maintainability

  • Christa Runge Christa Runge created ticket #648

    Refactor layout constraints to improve maintainability

  • Christa Runge Christa Runge modified ticket #647

    Initial rotation not performed

  • Christa Runge Christa Runge posted a comment on ticket #647

    Resolved with commit ac861a0. Root cause: call to [UIViewController attemptRotationToDeviceOrientation] was missing. New behaviour: After I exit the simulator from landscape mode, it still turns to portrait. But when I restart the application, it turns back to landscape. From now on the UI rotates as expected, and is in synch with the device orientation.

  • Christa Runge Christa Runge modified ticket #647

    Initial rotation not performed

  • Christa Runge Christa Runge created ticket #647

    Initial rotation not performed

  • Christa Runge Christa Runge modified ticket #604

    Error message on presenting / hiding help view

  • Christa Runge Christa Runge posted a comment on ticket #604

    I do not see this error message / warning again with the latest code at commit 0af116b143077891303f1aebe735ee0baebb29f2. Closing the ticket. Note: we are now linking to SDK 13. Currently we have setup target device to iOS 13.0, maybe we will extend it back to some 12.x version for better inclusion of our users.

  • Christa Runge Christa Runge modified ticket #627

    Animations to / from modal views

  • Christa Runge Christa Runge posted a comment on ticket #627

    Not seen with latest code at commit 0af116b143077891303f1aebe735ee0baebb29f2. Closing the ticket.

  • Christa Runge Christa Runge posted a comment on ticket #635

    Fixed error 113 at commit 0af116b143077891303f1aebe735ee0baebb29f2. But I still see error messages like [ProcessSuspension] 0x10c5f3720 - ProcessAssertion::processAssertionWasInvalidated() and [ProcessSuspension] 0x600002b00540 - WKProcessAssertionBackgroundTaskManager: Ignored request to start a new background task because the application is already in the background Root cause of error 113 was that the WKWebView can load content only while it is included somewhere in the view hierarchy. This has...

  • Christa Runge Christa Runge posted a comment on ticket #635

    I have displayed the numerical values for all currently documented WKErrorCode. They have values between 1 and 11. No 113 here.

  • Christa Runge Christa Runge posted a comment on ticket #635

    2020-07-18: at commit e48973, I still see error messages like: 2020-07-18 12:45:01.245427+0200 karatasi[85150:7577379] [ProcessSuspension] 0x10e5f34e0 - ProcessAssertion::processAssertionWasInvalidated() 2020-07-18 12:45:31.121643+0200 karatasi[85150:7577379] Could not signal service com.apple.WebKit.WebContent: 113: Could not find specified service

  • Christa Runge Christa Runge modified ticket #646

    Investigate if NSAttributedString can be used instead of WKWebView

  • Christa Runge Christa Runge modified ticket #636

    Grouped table views

  • Christa Runge Christa Runge posted a comment on ticket #636

    1) We prefer to stay with the "Grouped" layout because it uses the full width of the screen. 2) Content view of description cell with height 0 was resolved: Fix a layout warning (table cell content view has height = 0). Christa Runge 15.07.20, 00:05 f51c084a Similar issues were resolved: Fix a layout warning (table cell content view has height = 0). ndegendogo 15.07.20, 22:50 4872e9c3 Fix layout issue (table cell content view has height = 0). ndegendogo 15.07.20, 23:53 85b4d05b

  • Christa Runge Christa Runge modified ticket #636

    Grouped table views

  • Christa Runge Christa Runge modified ticket #646

    Investigate if NSAttributedString can be used instead of UIWebView

  • Christa Runge Christa Runge created ticket #646

    Investigate if NSAttributedString can be used instead of UIWebView

  • Christa Runge Christa Runge posted a comment on ticket #625

    Actually, it is not the svn revision number, because meanwhile we have migrated our codebase to git.

  • Christa Runge Christa Runge created ticket #645

    Synch: Strange error message in console window

  • Christa Runge Christa Runge modified ticket #625

    svn revision info to be added again to the build process

  • Christa Runge Christa Runge committed [r4021]

    Fix a layout warning (table cell content view has height = 0).

  • Christa Runge Christa Runge modified ticket #569

    correct views for yes/no questions

  • Christa Runge Christa Runge modified ticket #642

    Card Edit: Conflict on Layout constraint for multi-line fields

  • Christa Runge Christa Runge posted a comment on ticket #642

    Fixed in svn4020. Tested ok.

  • Christa Runge Christa Runge committed [r4020]

    Fix layout conflicts in card edit and data wizard. This resolves #642 (Card Edit: Conflict on Layout constraint for multi-line fields).

  • Christa Runge Christa Runge posted a comment on ticket #642

    Solution: Removed the height constraint and related setter from DataFieldCell. Impact on CardEditViewController and DataWizardViewController. To be tested on both views with single-line, multi-line and empty field.

  • Christa Runge Christa Runge posted a comment on ticket #642

    1) the calculated height values are used at two places: a) in heightForRowAtIndexPath (for the table) b) as a height constraint for the DataFieldCell. 2) When I remove the height constraint for the cell, the conflict is gone. 3) When I additionally remove the heightForRowAtIndexPath, it does not show multi-line content. 4) When I add the height constraint for the cell again, I get: a) again the conflict warning. b) additionally a warning (possibly for an empty cell): "Detected a case where constraints...

  • Christa Runge Christa Runge modified a comment on ticket #642

    Notes: 1) the affected card has a multi-line content. 2) We implement a method calculateHeightsOfTextFields which uses hard-coded constants in the formula. This might be dangerous. Since iOS 7 the UITableView provides a method estimatedRowHeight: Providing a nonnegative estimate of the height of rows can improve the performance of loading the table view. The default value is UITableViewAutomaticDimension, which means that the table view selects an estimated height to use on your behalf. Setting the...

  • Christa Runge Christa Runge modified a comment on ticket #642

    Notes: 1) the affected card has a multi-line content. 2) We implement a method calculateHeightsOfTextFields which uses hard-coded constants in the formula. This might be dangerous. Since iOS 7 the UITableView provides a method estimatedRowHeight: Providing a nonnegative estimate of the height of rows can improve the performance of loading the table view. The default value is UITableViewAutomaticDimension, which means that the table view selects an estimated height to use on your behalf. Setting the...

  • Christa Runge Christa Runge posted a comment on ticket #642

    Notes: 1) the affected card has a multi-line content. 2) We implement a method calculateHeightsOfTextFields which uses hard-coded constants in the formula. This might be dangerous. 3) Since iOS 7 the UITableView provides a method estimatedRowHeight. Maybe this is a good alternative.

  • Christa Runge Christa Runge created ticket #642

    Card Edit: Conflict on Layout constraint for multi-line fields

  • Christa Runge Christa Runge posted a comment on ticket #569

    Notes: UIActionSheet is deprecated since iOS 8, and we don't use it any more. It shall be replaced with UIAlertController with a preferredStyle of UIAlertControllerStyleActionSheet. Analysing our current usage of UIAlertController: 1) Card Edit, deleting card (cancel, delete) 2) Cat Edit, bulk commit (cancel, commit) 3) Cat Edit, bulk uncommit (cancel, uncommit) 4) Cat Table, delete (cancel, delete) 5) DB List, delete (cancel, delete) The values of UIAlertControllerStyle are: UIAlertControllerStyleActionSheet:...

  • Christa Runge Christa Runge posted a comment on ticket #640

    Resolved in svn 4019, by using the toolbat from the enclosing navigation view controller. With the exception of Help View Controller, which is not yet enclosed in a navi vc.

  • Christa Runge Christa Runge committed [r4019]

    In modal views, use toolbar from enclosing navigation view controller.

  • Christa Runge Christa Runge posted a comment on ticket #640

    Note: in non-modal views, it has the same color (white) as the table cells; but it is optically separated by a fine line from the tables. In modal views, it has also the same colour; but no optical separation from the table.

  • Christa Runge Christa Runge modified ticket #640

    Toolbar should get different color than the table views

  • Christa Runge Christa Runge committed [r4018]

    Cleanup height of table cells

  • Christa Runge Christa Runge posted a comment on ticket #626

    UITableViewAutomaticDimension: table view chooses appropriate height based on your cell's content. UITableView.rowHeight: is ignored as soon as the delegate implements the tableView:heightForRowAtIndexPath: method. The former is more efficient if all cells have same height.

  • Christa Runge Christa Runge modified ticket #637

    Use UIBarAppearance to retrieve the dimensions of Toolbar and NaviBar.

  • Christa Runge Christa Runge modified ticket #617

    Semantic data types

  • Christa Runge Christa Runge modified ticket #616

    Cleanup header files - move private properties to implementation

  • Christa Runge Christa Runge modified a comment on ticket #639

    Reduced prio. We are not yet ready for this. Migrating to the persistence API will need major refactorings as preparations. Still we need to re-activate our own persistence implementation

  • Christa Runge Christa Runge modified ticket #639

    Migrate to persistence API

  • Christa Runge Christa Runge posted a comment on ticket #639

    Reduced prio. We are not yet ready for this. Migrating to the persistence API will need major refactorings as preparations.

  • Christa Runge Christa Runge modified ticket #626

    Minimum height of table row in card list

  • Christa Runge Christa Runge committed [r4017]

    Bugfix: presentWithNavi shall also support to present view controllers that don’t support state restoration.

  • Christa Runge Christa Runge committed [r4016]

    Derive all view controllers on navigation stack from BasePresenting view controllers.

  • Christa Runge Christa Runge committed [r4015]

    Cleanup: remove unused property and method (initWithToolbar, showsToolbar).

  • Christa Runge Christa Runge committed [r4014]

    Cleanup: switching for OUR_PERSISTENCE

  • Christa Runge Christa Runge committed [r4013]

    In landscape mode show Help view controller.

  • Christa Runge Christa Runge committed [r4012]

    Improve method name

  • Christa Runge Christa Runge committed [r4011]

    New #define to switch between the UI restoration and our own legacy persistence system

  • Christa Runge Christa Runge modified ticket #641

    Autorotate is broken - detected at svn 4009

1 >