not 100% sure what you mean? if you're using one of the built-in UITableViewCell layouts, eg
cell = new UITableViewCell (UITableViewCellStyle.Default, cellIdentifier); then the text _is_ being displayed in a UILabel, so you can just set the shadow properties: cell.TextLabel.ShadowColor = UIColor.Gray; cell.TextLabel.ShadowOffset = new System.Drawing.SizeF(2,2); ? On Fri, Sep 14, 2012 at 7:52 AM, Kris Bloom <[email protected]> wrote: > i am trying to figure out how to add a simple Table Cell that has an > image, text and i want the text to have a shadow like the UILabel does.. > > I got it working great with the StyledStringElement but it does not have > a way to do the text shadow. I then tried UITableViewCell but it doesn't > have a tapped event. Am i caught in a catch 22 here? > > Any help would be great :) > > > > Thanks, > > Kris Bloom > -------------------------------- > Extreme Velocity 3D > www.ExtremeVelocity3d.com > > > > > _______________________________________________ > MonoTouch mailing list > [email protected] > http://lists.ximian.com/mailman/listinfo/monotouch > >
_______________________________________________ MonoTouch mailing list [email protected] http://lists.ximian.com/mailman/listinfo/monotouch
