23 questions
0
votes
1
answer
214
views
CALayer shadowPath ignored on rendering as image
I am making an app that uses CAlayer to show contents like image in a NSWindow. The layer has shadows styled with shadowPath to make a better appearance. Finally to save/export the whole CAlayer and ...
1
vote
1
answer
322
views
How to make a shadow on iOS13
I set shadow on NSMutableAttributedString,
it works on other version of iOS but not iOS 13,
the next is my code
let shadow = NSShadow.init()
shadow.shadowColor = UIColor.red
...
1
vote
1
answer
420
views
Swift - Where is shadowOpacity on NSShadow?
I just discovered the unfortunate fact that setting the shadow properties of an NSView's backing layer on macOS does not cause the shadow to render. It seems that this only works for stand-alone ...
2
votes
0
answers
250
views
NSWindow shadow with transparency, how to clip certain area
In our OS X application, we have enabled window shadow by view.window?.hasShadow = true. This will create a fine shadow over NSWindow. We have created a hole in the application by a custom view to see ...
0
votes
1
answer
64
views
Shadow is drawn in "main" Storyboard but not in any other storyboard
I try to write my own comboBox as NSComboBox does not has features I need.
So, I subclassed an NSTextField and monitor the textinput and depending of the stringValue a TableView will get it's data.
...
5
votes
0
answers
247
views
CATextLayer ignores NSShadow?
I have a custom UIView that I've created that has several custom UIControl instances which are non-rectangular buttons (instead of using UIButton instances). I am doing this because I need to be able ...
1
vote
2
answers
376
views
Objective C - OS X - Issue adding NSShadow to NSImageView
I am trying to add a shadow to a NSImageView on an MAC application.
I created a custom NSImageView class "ShadowView.h" and modified the drawRect: like so:
- (void)drawRect:(NSRect)dirtyRect {
[...
2
votes
0
answers
1k
views
NSShadowAttributeName not working
Can anyone see what is wrong in the following Swift code?
func myFunction(color:UIColor) {// Changes the Shadow color on textLabel
var attributes = textLabel.attributedText?.attributesAtIndex(0, ...
1
vote
1
answer
818
views
NSShadow set() method in iOS
In Apple's documentation for NSShadow in UIKit, they state:
An NSShadow object may be used in one of two ways. First, it may be set, like a color or a font, in which case its attributes are applied ...
3
votes
1
answer
352
views
Cannot get a drop shadow on multiline nsstring
I'm trying to get multiline text to draw with a drop shadow without using deprecated APIs. It works fine for a single line. The relevant code looks like this:
-(void)drawRect:(CGRect)rect
{
...
1
vote
1
answer
141
views
Creating NSShadow makes an error
I'm making a white shadow in Objective-C and using the code
NSShadow *myShadow = [[NSShadow alloc]init];
[myShadow setShadowColor: [UIColor whiteColor]];
and it seems to work fine, but when I'm ...
1
vote
1
answer
1k
views
Using NSShadow on Navigation Bar Button Items in iOS 7
I have a navigation bar that looks like so:
It was created with the following code:
// AppDelegate.m
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)...
6
votes
0
answers
493
views
Draw shadow of layer-backed NSView beyond bounds
I'd like to get a custom NSShadow on a borderless NSWindow,
and since I'm also applying some animations on the window, I've set up the window's content view to be layer-backed.
When applying the ...
3
votes
3
answers
5k
views
How to add shadow to NSView
I've spent some time trying to figure out how to add a shadow to an NSView. For now, I am attempting to use the NSShadow class to accomplish this. My code is below. I am attempting to create the ...
4
votes
1
answer
1k
views
Custom NSWindow with a custom shadow
I have a NSWindow subclass, looking like this
The thing that bothers me is that I would like to alter the shadow.
Over a standard window, like Xcode right here, the contrast is a little weak.
So I'd ...