Re: Cocoa-dev Digest, Vol 19, Issue 24

2022-04-04 Thread Michal L. Wright via Cocoa-dev
On Apr 4, 2022, at 08:45 , Richard Charles wrote: > > >> On Apr 4, 2022, at 8:58 AM, Michal L. Wright via Cocoa-dev >> wrote: >> >> Hi, >> >> I have a rather large Objective C project that I'm building in Xcode 13.3, >> running under mac

Re: Cocoa-dev Digest, Vol 19, Issue 24

2022-04-04 Thread Michal L. Wright via Cocoa-dev
Hi, I have a rather large Objective C project that I'm building in Xcode 13.3, running under macOS 12.3. (98 .m files with matching .h files, and a dozen or so .h files containing defines, with the release version of the app itself being 13.8 MB.) When I run the app in Xcode (whether in debug

Mojave vs. AppleScript

2018-10-30 Thread Michal L. Wright
My Mac database app includes a “Grab Web Address” function that uses AppleScript to get the URL and window name of the current tab from a variety of browsers. The URL and name are then pasted into a newly created record. It worked with Demeter, Google Chrome, iCab, OmniWeb, Opera, Safari,

Re: Sharing Files Between My Apps via iCloud

2018-10-25 Thread Michal L. Wright
ess in > Finder, if anything at all. Or it is partial file data, maybe with space > already reserved for the final size. > > Cheers, > -- Uli Kusterer > "The Witnesses of TeachText are everywhere..." > http://www.zathras.de > > On 16. Sep 2018, at 20:27, Michal L. Wright

Re: Sharing Files Between My Apps via iCloud

2018-09-16 Thread Michal L. Wright
I have apps for Mac OS (myMacApp) and iOS (myIOSApp) that use the same file format. The apps can synchronize files using WiFi or Dropbox. Now I’m working on using iCloud for synchronization. I’m using the same approach that works with Dropbox, which is: 1. myIOSApp can read from and write to

Odd Behavior of UIText View in app compiled with a Base SDK of iOS 11

2017-10-06 Thread Michal L. Wright
Hi, I have an app (written in Objective C) that has a UIView that includes a UITableView and a UIToolbar. The bottom section of the table view is a UITextView. The Deployment Target is 9.0, and the Base SDK is iOS 11. Compiling with Xcode 9.0 and running on iPhone 6s (9.2) in the Simulator,

Re: Images Being Substituted in UIText .attributedText -- It's an iOS bug

2015-04-17 Thread Michal L. Wright
Hi, Well, I used a tech support incident and it was determined that I should submit a bug report, which I have done. (And the tech support incident was credited back to my account.) -- Mike Message: 1 Date: Fri, 10 Apr 2015 19:18:22 -0400 From: Michal L. Wright m...@raccoonbend.com

Scaling images for Insertion into UITextView .attributedText

2015-04-15 Thread Michal L. Wright
Hi, I have an iOS-based flat-file database app that shows records in a UIViewController, called RecordViewController. I’ve added an “Insert Photo” menu item to the editing menu. This brings up a photo picker view that sends the selected image back to RecordViewController. I’ve included code

Images Being Substituted in UIText .attributedText

2015-04-10 Thread Michal L. Wright
Hi, I have a pair of almost-matching flat-file database apps, iData Pro for the Mac and iData Pro-Mobile for mobile devices. Datafiles for both apps are written to disk as a plist (xml) file and are almost identical in structure. Up till now, iData Pro-Mobile could display only plain text. Now

RTFD Compatibility Between OS X and iOS?

2015-03-24 Thread Michal L. Wright
Hi, I have a pair of almost-matching flat-file database apps, iData Pro for the Mac and iData Mobile for mobile devices. Datafiles for both apps are written to disk as xml. Records in iData Mobile datafiles each include a block of plain text, which is an NSString object that is displayed in a

Re: -tableView:accessoryButtonTappedForRowWithIndexPath: Sometimes returns wrong indexPath.row

2011-11-14 Thread Michal L. Wright
Date: Fri, 11 Nov 2011 20:38:29 + From: Luke Hiesterman luket...@apple.com Subject: Re: -tableView:accessoryButtonTappedForRowWithIndexPath: Sometimes returns wrong indexPath.row To: Michal L. Wright m...@raccoonbend.com Cc: cocoa-dev@lists.apple.com cocoa-dev@lists.apple.com

-tableView:accessoryButtonTappedForRowWithIndexPath: Sometimes returns wrong indexPath.row

2011-11-11 Thread Michal L. Wright
Hi, I have a UITableView that has four sections. Sections 0 and 2 have a single row each. Sections 1 and 3 have variable numbers of rows. Each row in sections 1 and 3 has an accessory view set up by the following lines in -tableView:cellForRowAtIndexPath: UITableViewCell cell;