Search results for

column

2,048 results found

Post

Replies

Boosts

Views

Activity

Reply to Schema to collect event signposts
Perfect! Thanks for the pointer. I'm finally starting to grasp the documentation a bit and ended up using slice.Something like this seems to work:<list> <title>List: Writes</title> <table-ref>writes</table-ref> <slice> <column>event-type</column> <equals> <event-type>Event</event-type> </equals> </slice> <column>name</column> <column>message</column> </list>It seems like maybe there's a way to filter in create-table using the attribute element but it keeps telling me that event-type is not an attribute of the os-signpost schema (perhaps it's a column and not an attribute, not sure I fully grasp the terminology yet). I'll take a look at a custom modeler as shown in your final advanced example to better filter based on the message.I think it'd be useful to have some type of model generator (os-signpost-point-schema?) for these events where a p
Jan ’19
Reply to Xcode 14.3 - Multiple commands produce swiftsourceinfo
Here's how I fixed it... Select your Extension target and go to Build Settings Search for module and look for Packaging -> Product Module Name. You'll probably see that the Resolved column is showing the same name as your main target. Type a unique name in the middle column (the column is titled WidgetsExtension or whatever your extension target is called) You should see that the Resolved column now shows the unique name you entered. It should hopefully build now.
Topic: App & System Services SubTopic: Core OS Tags:
Oct ’23
Reply to SwiftUI @Published var inconsistently updating views
SquareView is called here (posted in answer as well in case it's more readable): struct BoardView: View { var body: some View { VStack(alignment: .center, spacing: 0) { ForEach(SizeRange.reversed(), id: .self) { row in HStack(spacing: 0) { ForEach(SizeRange, id: .self) { column in SquareView(column: column, row: row) } } } } } }
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Feb ’22
Reply to image name for pointer in custom instrument
That's actually not that bad. It comes up with the naked address and the image name which is sufficient for my needs.Code for folks reading this in the future:<ktrace-interval-schema> <id>com-google-dyld-objc-init-schema</id> <title>dyld ObjC Init</title> <start-pattern> <class>31</class> <subclass>7</subclass> <code>8</code> <function>1</function> <thread>?thread</thread> <arg2>?initializer</arg2> </start-pattern> <end-pattern> <class>31</class> <subclass>7</subclass> <code>8</code> <function>2</function> </end-pattern> <start-column> <mnemonic>start</mnemonic> <title>Start</title> <type>start-time</type> </start-column> <duration-column> <mnemonic>duration</mnemonic> <title>Duration</title> <type>duration</type> </dura
Jan ’19
Reply to Testflight metrics - installs and 7 days
In the Status column, view the status of a build. In the other columns, view the number of invited testers, number of installations on devices, and the total number of sessions in the last seven days across all testers. In the Crashes column, view the number of times the build crashed on tester devices. In the Feedback column, for iOS builds, view the number of feedback submissions you received from your testers. https://help.apple.com/app-store-connect/#/dev78d0a8f87 > View build status and metrics
Oct ’20
Reply to Texture Pixel layout in Metal
Yes, you are correct that the C array is in row major order. It's important to note that not all languages address them equally. Some languages like Fortran, use column major order when storing the data, but use the same style (row, column) addressing. But in many shading languages, like Metal Shading Language, the first subscript is the column, and the second subscript is the row because for linear algebra reasons, vectors are treated like columns.
Topic: Graphics & Games SubTopic: General Tags:
Jun ’21
Table column cannot show value with function tableView:aTableView objectValueForTableColumn:aTableColumn row:rowIndex
I hope the table column show the values after I pressed the button. The following is the IBAction Button. - (IBAction)buttonTapped:(id)sender { //Filling the arrays Test_name = [NSArray arrayWithObjects:@test_item_a,@b,@c,@Current,nil]; Min = [NSArray arrayWithObjects:@0.5,@0.7,@0.8,@100,nil]; Max = [NSArray arrayWithObjects:@5,@5,@9,@140,nil]; uint16 index = 0; NSInteger i = 0; //Show_Datagrid this function move the above values to another 3 arrays table_item, //table_min, table_max. And the following code is just to verify the value. [self Show_Datagrid:index]; [self showMeg:@Button Tapped!2n]; [self showMeg:[table_item objectAtIndex:0]]; [self showMeg:@n]; [self showMeg:[table_min objectAtIndex:0]]; [self showMeg:@n]; [self showMeg:Column_test_item.identifier]; //call this function to show the values in tableview. [self tableView:_tableview objectValueForTableColumn:Column_test_item row:i]; } following is the function (Column_test_item.identifier is verified correct.): -(id)tableView:(NSTableView
1
0
580
May ’22
Create a grid table with fixed number of rows and columns of variable widths
I've tried a few approaches to create a standard table - with a fixed number of columns and rows, but with variable column widths - for all device classes. The contraint system, even using Stack Views, created an impossible number of layout errors, and so it was suggested to use UICollectionViews, which appears better, but I cannot solve the following issues.Firstly, the cells in the last row of the table do not align perfectly with the cells above. Each cell is fractionally less width, making the final cell quite clearly unaligned. This issue, while minor in the example project, can appear larger depending on cell contents or device sizes.Secondly, while I can manage device orientation changes on most devices tested in the simulator, this not true for iPad Air devices. While the table layout is correct when I first run the project on iPad Air in any orientation, and is correct when re-orientated from landscape to horizontal; the layout breaks if I run the project on a iPad Air in portrait o
Topic: UI Frameworks SubTopic: UIKit Tags:
6
0
4.8k
Aug ’19
Reply to Symbolic links to root in Monterey
My symbolic links still work in Monterey. eg cat /etc/synthetic.conf srv System/Volumes/Data/srv Remember to use tabs. man synthetic.conf synthetic.conf specifies a single synthetic entity per line. Each line may have one or two columns, separated by a tab character. If a line has a single column, it denotes a virtual empty directory to be created at /. If a line has two columns, it denotes a symbolic link at / whose link target is given in the second column. Big Sur thread: https://developer.apple.com/forums/thread/670391
Topic: App & System Services SubTopic: Core OS Tags:
Mar ’22