Giter VIP home page Giter VIP logo

Comments (7)

ermalkaleci avatar ermalkaleci commented on June 23, 2024

Hello @khunshan,
Yes it is a way. In next version this will be much easy.
Anyway if you create a new ViewController (A) for below view (CarbonTabSwipeNavigation) and use this (A) as rootViewController for CarbonTabSwipe and then addSubview A.view to rootView.

@interface HomeViewController () <CarbonTabSwipeDelegate>
{
    UIViewController *A;
}
@end 

@implementation HomeViewController

- (void)viewDidLoad {
    [super viewDidLoad];

    A = [[UIViewController alloc] init];
    A.view.frame = CGRectMake(0, 200, 320, 300); // just creating a frame
    [self.view addSubview:A.view];

    NSArray *names = @[@"ONE", @"TWO", @"THREE", @"FOUR", @"FIVE", @"SIX", @"SEVEN", @"EIGHT", @"NINE", @"TEN"];
    UIColor *color = [UIColor white];
    tabSwipe = [[CarbonTabSwipeNavigation alloc] createWithRootViewController:A tabNames:names tintColor:color delegate:self];
}
@end

I hope this will help you ;)

from carbonkit.

ancheng1114 avatar ancheng1114 commented on June 23, 2024

Thanks , it's working nice.

from carbonkit.

khunshan avatar khunshan commented on June 23, 2024

I missed it. However. I am glad it does work now.

On Mon, Oct 26, 2015 at 12:55 PM, ancheng [email protected] wrote:

Thanks , it's working nice.


Reply to this email directly or view it on GitHub
#40 (comment)
.

Khunshan S. Ahmad

from carbonkit.

JigneshParekh7165 avatar JigneshParekh7165 commented on June 23, 2024

My Header Height is 64 how can i set CarbonTabSwipeNavigation start from 64....Plz Help Me...

class MessgeVC: UIViewController,CarbonTabSwipeNavigationDelegate
{

var items = NSArray()
var carbonTabSwipeNavigation: CarbonTabSwipeNavigation = CarbonTabSwipeNavigation()

override func viewDidLoad() 

{
super.viewDidLoad()

    self.title = "Message"
    items = ["Agent", "Comment"]

    carbonTabSwipeNavigation = CarbonTabSwipeNavigation(items: items as [AnyObject], delegate: self)
    carbonTabSwipeNavigation.insertIntoRootViewController(self)
    carbonTabSwipeNavigation.setNormalColor(UIColor(white: 1, alpha: 0.8))
    carbonTabSwipeNavigation.setSelectedColor(UIColor.whiteColor())
    self.style()

}

it started from (0,0,320,30) how can i solve this issue???

chat_1024

from carbonkit.

ermalkaleci avatar ermalkaleci commented on June 23, 2024

use [carbonTabSwipeNavigation insertIntoRootViewController:self andTargetView:yourView];

from carbonkit.

JigneshParekh7165 avatar JigneshParekh7165 commented on June 23, 2024

class MessgeVC: UIViewController,CarbonTabSwipeNavigationDelegate

{

var items = NSArray()

var carbonTabSwipeNavigation: CarbonTabSwipeNavigation =

CarbonTabSwipeNavigation()

var a: UIViewController!


override func viewDidLoad() {

    super.viewDidLoad()



    a.view.frame = CGRectMake(0, 64, 320, 30)

    self.view.addSubview(a.view)


    self.title = "Message"

    items = ["Agent", "Comment"]



    carbonTabSwipeNavigation = CarbonTabSwipeNavigation(items: items as

[AnyObject], delegate: self)

    carbonTabSwipeNavigation.insertIntoRootViewController(self,

andTargetView: a.view)

I had place this code but its not working what can i do for
carbonTabSwipeNavigation Started from 0,64,320,30....Help Me Bro....

On Wed, May 18, 2016 at 1:39 AM, Ermal Kaleci [email protected]
wrote:

use [carbonTabSwipeNavigation insertIntoRootViewController:self
andTargetView:yourView];


You are receiving this because you commented.
Reply to this email directly or view it on GitHub
#40 (comment)

from carbonkit.

ermalkaleci avatar ermalkaleci commented on June 23, 2024

create a UIView not UIViewController. you can do it from storyboard and create an IBOutlet

from carbonkit.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.